------
## 最终结论
```python
def decimal_to_binary(decimal):
    binary_str = bin(decimal)[2:]  # Convert to binary and remove the '0b' prefix
    return 'db' + binary_str + 'db'  # Add 'db' at the beginning and end
```