Unicode Finder

"๐Ÿ“ƒ" U+1F4C3(PAGE WITH CURL)

๐Ÿ“ƒ
U+1F4C3
Block Name
Miscellaneous Symbols and Pictographs
Name
PAGE WITH CURL

Programming

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

Web

CSS
\01F4C3
HtmlDecimal
📃
HtmlHexadecimal
📃
Url
%F0%9F%93%83

Code

MD5
ac88a20e2006479957342c6dd502ff70
Sha1
9bd5aade8638133fc3a68a8ca35c703971252db2
Base64
8J+Tgw==

Usage Examples

Programming Languages

C:

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

JavaScript:

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

Java:

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

JSON:

{"text": "\u1F4C3"}  // Value: ๐Ÿ“ƒ

Python:

char = '\u1F4C3'
print(char)  # Output: ๐Ÿ“ƒ

Perl:

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

PHP:

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

Ruby:

char = "\u{1F4C3}"
puts char  # Output: ๐Ÿ“ƒ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

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

HTML Hexadecimal:

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

URL Encoding:

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

Encodings

MD5:

ac88a20e2006479957342c6dd502ff70

SHA1:

9bd5aade8638133fc3a68a8ca35c703971252db2

Base64:

8J+Tgw==