Unicode Finder

"๐Ÿ“œ" U+1F4DC(SCROLL)

๐Ÿ“œ
U+1F4DC
Block Name
Miscellaneous Symbols and Pictographs
Name
SCROLL

Programming

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

Web

CSS
\01F4DC
HtmlDecimal
📜
HtmlHexadecimal
📜
Url
%F0%9F%93%9C

Code

MD5
ada729864215f133ec89a6af33013955
Sha1
ab67c34974aa873af13e5c5071ed045452acdffd
Base64
8J+TnA==

Usage Examples

Programming Languages

C:

char c = '\u1F4DC';
printf("%c\n", c);  // Output: ๐Ÿ“œ

JavaScript:

const char = '\u1F4DC';
console.log(char);  // Output: ๐Ÿ“œ

Java:

char c = '\u1F4DC';
System.out.println(c);  // Output: ๐Ÿ“œ

JSON:

{"text": "\u1F4DC"}  // Value: ๐Ÿ“œ

Python:

char = '\u1F4DC'
print(char)  # Output: ๐Ÿ“œ

Perl:

my $char = "\x{1F4DC}";
print $char;  # Output: ๐Ÿ“œ

PHP:

$char = "\x{1F4DC}";
echo $char;  // Output: ๐Ÿ“œ

Ruby:

char = "\u{1F4DC}"
puts char  # Output: ๐Ÿ“œ

Rust:

let c = '\u{1F4DC}';
println!("{}", c);  // Output: ๐Ÿ“œ

Go:

char := '\u1F4DC'
fmt.Printf("%c\n", char)  // Output: ๐Ÿ“œ

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\01F4DC";  /* Display: ๐Ÿ“œ */
}

HTML Decimal:

<p>HTML decimal: &#128220;</p>  <!-- Display: ๐Ÿ“œ -->

HTML Hexadecimal:

<p>HTML hex: &#x1F4DC;</p>  <!-- Display: ๐Ÿ“œ -->

URL Encoding:

// ๐Ÿ“œ URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%93%9C

Encodings

MD5:

ada729864215f133ec89a6af33013955

SHA1:

ab67c34974aa873af13e5c5071ed045452acdffd

Base64:

8J+TnA==