Unicode Finder

"๐Ÿ“Œ" U+1F4CC(PUSHPIN)

๐Ÿ“Œ
U+1F4CC
Block Name
Miscellaneous Symbols and Pictographs
Name
PUSHPIN

Programming

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

Web

CSS
\01F4CC
HtmlDecimal
📌
HtmlHexadecimal
📌
Url
%F0%9F%93%8C

Code

MD5
af97e9607998a99e133c8a45a237cd36
Sha1
dde81c18d66dfe2c5c65207200c1be53f43de2d3
Base64
8J+TjA==

Usage Examples

Programming Languages

C:

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

JavaScript:

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

Java:

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

JSON:

{"text": "\u1F4CC"}  // Value: ๐Ÿ“Œ

Python:

char = '\u1F4CC'
print(char)  # Output: ๐Ÿ“Œ

Perl:

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

PHP:

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

Ruby:

char = "\u{1F4CC}"
puts char  # Output: ๐Ÿ“Œ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

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

HTML Hexadecimal:

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

URL Encoding:

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

Encodings

MD5:

af97e9607998a99e133c8a45a237cd36

SHA1:

dde81c18d66dfe2c5c65207200c1be53f43de2d3

Base64:

8J+TjA==