Unicode Finder

"๐Ÿ—œ" U+1F5DC(COMPRESSION)

๐Ÿ—œ
U+1F5DC
Block Name
Miscellaneous Symbols and Pictographs
Name
COMPRESSION

Programming

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

Web

CSS
\01F5DC
HtmlDecimal
🗜
HtmlHexadecimal
🗜
Url
%F0%9F%97%9C

Code

MD5
5684f0aac0822daf86dd938ab4e78b0c
Sha1
b3cd0612e10568109fc87d52f8ee7d47204e3e47
Base64
8J+XnA==

Usage Examples

Programming Languages

C:

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

JavaScript:

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

Java:

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

JSON:

{"text": "\u1F5DC"}  // Value: ๐Ÿ—œ

Python:

char = '\u1F5DC'
print(char)  # Output: ๐Ÿ—œ

Perl:

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

PHP:

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

Ruby:

char = "\u{1F5DC}"
puts char  # Output: ๐Ÿ—œ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

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

HTML Hexadecimal:

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

URL Encoding:

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

Encodings

MD5:

5684f0aac0822daf86dd938ab4e78b0c

SHA1:

b3cd0612e10568109fc87d52f8ee7d47204e3e47

Base64:

8J+XnA==