Unicode Finder

"๐Ÿ—ƒ" U+1F5C3(CARD FILE BOX)

๐Ÿ—ƒ
U+1F5C3
Block Name
Miscellaneous Symbols and Pictographs
Name
CARD FILE BOX

Programming

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

Web

CSS
\01F5C3
HtmlDecimal
🗃
HtmlHexadecimal
🗃
Url
%F0%9F%97%83

Code

MD5
f5cdc2cb057a074771760d2aa0b10537
Sha1
af52b736cfee29cb00de4f63bf94543967ec95d8
Base64
8J+Xgw==

Usage Examples

Programming Languages

C:

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

JavaScript:

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

Java:

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

JSON:

{"text": "\u1F5C3"}  // Value: ๐Ÿ—ƒ

Python:

char = '\u1F5C3'
print(char)  # Output: ๐Ÿ—ƒ

Perl:

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

PHP:

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

Ruby:

char = "\u{1F5C3}"
puts char  # Output: ๐Ÿ—ƒ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

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

HTML Hexadecimal:

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

URL Encoding:

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

Encodings

MD5:

f5cdc2cb057a074771760d2aa0b10537

SHA1:

af52b736cfee29cb00de4f63bf94543967ec95d8

Base64:

8J+Xgw==