Unicode Finder

"📚" U+1F4DA(BOOKS)

📚
U+1F4DA
Όνομα Μπλοκ
Miscellaneous Symbols and Pictographs
Όνομα
BOOKS

Programming

C
\u1F4DA
JavaScript
\u1F4DA
Java
\u1F4DA
Json
\u1F4DA
Python
\u1F4DA
Perl
\x{1F4DA}
PHP
\x{1F4DA}
Ruby
\u{1F4DA}
Rust
\u{1F4DA}
Go
\u1F4DA

Web

CSS
\01F4DA
HtmlDecimal
📚
HtmlHexadecimal
📚
Url
%F0%9F%93%9A

Code

MD5
5e6ec57f38e7d7f59c28cec1f43d886b
Sha1
c77540ac0b1645e1a52b07b91862840024bb2b24
Base64
8J+Tmg==

Παραδείγματα Χρήσης

Programming Languages

C:

char c = '\u1F4DA';
printf("%c\n", c);  // Output: 📚

JavaScript:

const char = '\u1F4DA';
console.log(char);  // Output: 📚

Java:

char c = '\u1F4DA';
System.out.println(c);  // Output: 📚

JSON:

{"text": "\u1F4DA"}  // Value: 📚

Python:

char = '\u1F4DA'
print(char)  # Output: 📚

Perl:

my $char = "\x{1F4DA}";
print $char;  # Output: 📚

PHP:

$char = "\x{1F4DA}";
echo $char;  // Output: 📚

Ruby:

char = "\u{1F4DA}"
puts char  # Output: 📚

Rust:

let c = '\u{1F4DA}';
println!("{}", c);  // Output: 📚

Go:

char := '\u1F4DA'
fmt.Printf("%c\n", char)  // Output: 📚

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\01F4DA";  /* Display: 📚 */
}

HTML Decimal:

<p>HTML decimal: &#128218;</p>  <!-- Display: 📚 -->

HTML Hexadecimal:

<p>HTML hex: &#x1F4DA;</p>  <!-- Display: 📚 -->

URL Encoding:

// 📚 URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%93%9A

Encodings

MD5:

5e6ec57f38e7d7f59c28cec1f43d886b

SHA1:

c77540ac0b1645e1a52b07b91862840024bb2b24

Base64:

8J+Tmg==