Unicode Finder

"๐Ÿ—Œ" U+1F5CC(EMPTY PAGE)

๐Ÿ—Œ
U+1F5CC
Block Name
Miscellaneous Symbols and Pictographs
Name
EMPTY PAGE

Programming

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

Web

CSS
\01F5CC
HtmlDecimal
🗌
HtmlHexadecimal
🗌
Url
%F0%9F%97%8C

Code

MD5
a45438592201f6e2d0778a629355ec98
Sha1
239909c18118069673431cc6f413ef3155d58a33
Base64
8J+XjA==

Usage Examples

Programming Languages

C:

char c = '\u1F5CC';
printf("%c\n", c);  // Output: ๐Ÿ—Œ

JavaScript:

const char = '\u1F5CC';
console.log(char);  // Output: ๐Ÿ—Œ

Java:

char c = '\u1F5CC';
System.out.println(c);  // Output: ๐Ÿ—Œ

JSON:

{"text": "\u1F5CC"}  // Value: ๐Ÿ—Œ

Python:

char = '\u1F5CC'
print(char)  # Output: ๐Ÿ—Œ

Perl:

my $char = "\x{1F5CC}";
print $char;  # Output: ๐Ÿ—Œ

PHP:

$char = "\x{1F5CC}";
echo $char;  // Output: ๐Ÿ—Œ

Ruby:

char = "\u{1F5CC}"
puts char  # Output: ๐Ÿ—Œ

Rust:

let c = '\u{1F5CC}';
println!("{}", c);  // Output: ๐Ÿ—Œ

Go:

char := '\u1F5CC'
fmt.Printf("%c\n", char)  // Output: ๐Ÿ—Œ

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\01F5CC";  /* Display: ๐Ÿ—Œ */
}

HTML Decimal:

<p>HTML decimal: &#128460;</p>  <!-- Display: ๐Ÿ—Œ -->

HTML Hexadecimal:

<p>HTML hex: &#x1F5CC;</p>  <!-- Display: ๐Ÿ—Œ -->

URL Encoding:

// ๐Ÿ—Œ URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%97%8C

Encodings

MD5:

a45438592201f6e2d0778a629355ec98

SHA1:

239909c18118069673431cc6f413ef3155d58a33

Base64:

8J+XjA==