Unicode Finder

"📔" U+1F4D4(NOTEBOOK WITH DECORATIVE COVER)

📔
U+1F4D4
Blokk Neve
Miscellaneous Symbols and Pictographs
Név
NOTEBOOK WITH DECORATIVE COVER

Programming

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

Web

CSS
\01F4D4
HtmlDecimal
📔
HtmlHexadecimal
📔
Url
%F0%9F%93%94

Code

MD5
aa93d20c7c9a45547c4017a146c22e62
Sha1
5265e31e4f1dae97f24e84d188b2ec4a3f5b1a8b
Base64
8J+TlA==

Használati Példák

Programming Languages

C:

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

JavaScript:

const char = '\u1F4D4';
console.log(char);  // Output: 📔

Java:

char c = '\u1F4D4';
System.out.println(c);  // Output: 📔

JSON:

{"text": "\u1F4D4"}  // Value: 📔

Python:

char = '\u1F4D4'
print(char)  # Output: 📔

Perl:

my $char = "\x{1F4D4}";
print $char;  # Output: 📔

PHP:

$char = "\x{1F4D4}";
echo $char;  // Output: 📔

Ruby:

char = "\u{1F4D4}"
puts char  # Output: 📔

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#128212;</p>  <!-- Display: 📔 -->

HTML Hexadecimal:

<p>HTML hex: &#x1F4D4;</p>  <!-- Display: 📔 -->

URL Encoding:

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

Encodings

MD5:

aa93d20c7c9a45547c4017a146c22e62

SHA1:

5265e31e4f1dae97f24e84d188b2ec4a3f5b1a8b

Base64:

8J+TlA==