Decode YWRqYWNlbnQ= from Base64
Decoded result: adjacent
Word Visualization: adjacent
a
d
j
a
c
e
n
t
For encoded binaries (like images, documents, etc.) use the file upload form below.
Decode base64 strings in real-time as you type or paste.
Decoding Process: YWRqYWNlbnQ= to adjacent
About the '=' Padding
The '=' at the end of "YWRqYWNlbnQ=" is padding. Base64 encoding requires the input length to be divisible by 4. When it's not, '=' characters are added as padding. These padding characters are represented as '000000' in binary but are not used in the final decoded output.
Step 1: Map Base64 Characters to Binary
| Base64 Character | Binary Value | Decimal Value |
|---|---|---|
| Y | 011000 | 24 |
| W | 010110 | 22 |
| R | 010001 | 17 |
| q | 101010 | 42 |
| Y | 011000 | 24 |
| W | 010110 | 22 |
| N | 001101 | 13 |
| l | 100101 | 37 |
| b | 011011 | 27 |
| n | 100111 | 39 |
| Q | 010000 | 16 |
| = | padding (000000) | - |
Step 2: Group Bits into Bytes
The binary string is grouped into 8-bit chunks (1 byte each):
01100001 01100100 01101010 01100001 01100011 01100101 01101110 01110100 00
Step 3: Convert Binary to ASCII
| Binary Value | ASCII Character |
|---|---|
| 01100001 | a |
| 01100100 | d |
| 01101010 | j |
| 01100001 | a |
| 01100011 | c |
| 01100101 | e |
| 01101110 | n |
| 01110100 | t |
| 00 |
When combined, these characters form the decoded string: "adjacent"
Word Statistics: adjacent
General Statistics
- Length: 8 characters
- Vowels: 3
- Consonants: 5
Letter Frequency
| Letter | Frequency |
|---|---|
| a | 2 |
| d | 1 |
| j | 1 |
| c | 1 |
| e | 1 |
| n | 1 |
| t | 1 |
Related Conversion Tools
Recent Posts
How to Base64 Decode Data in Bash Linux
December 16, 2024
How to Base64 Decode Data in Go (Golang)
December 16, 2024
How to Base64 Decode Data in PowerShell
December 16, 2024
How to Base64 Decode a String in Python
December 16, 2024
Decode History
Your decode history will appear here. Start decoding to build your history!