Unicode Finder

"๐Ÿž" U+1F3DE(NATIONAL PARK)

๐Ÿž
U+1F3DE
Nama Blok
Miscellaneous Symbols and Pictographs
Nama
NATIONAL PARK

Programming

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

Web

CSS
\01F3DE
HtmlDecimal
🏞
HtmlHexadecimal
🏞
Url
%F0%9F%8F%9E

Code

MD5
fd3bbf645c009a55b43af231008cdbbc
Sha1
c42dbd0c02d9f6ae0415f6ac87664df7eaa29892
Base64
8J+Png==

Contoh Penggunaan

Programming Languages

C:

char c = '\u1F3DE';
printf("%c\n", c);  // Output: ๐Ÿž

JavaScript:

const char = '\u1F3DE';
console.log(char);  // Output: ๐Ÿž

Java:

char c = '\u1F3DE';
System.out.println(c);  // Output: ๐Ÿž

JSON:

{"text": "\u1F3DE"}  // Value: ๐Ÿž

Python:

char = '\u1F3DE'
print(char)  # Output: ๐Ÿž

Perl:

my $char = "\x{1F3DE}";
print $char;  # Output: ๐Ÿž

PHP:

$char = "\x{1F3DE}";
echo $char;  // Output: ๐Ÿž

Ruby:

char = "\u{1F3DE}"
puts char  # Output: ๐Ÿž

Rust:

let c = '\u{1F3DE}';
println!("{}", c);  // Output: ๐Ÿž

Go:

char := '\u1F3DE'
fmt.Printf("%c\n", char)  // Output: ๐Ÿž

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\01F3DE";  /* Display: ๐Ÿž */
}

HTML Decimal:

<p>HTML decimal: &#127966;</p>  <!-- Display: ๐Ÿž -->

HTML Hexadecimal:

<p>HTML hex: &#x1F3DE;</p>  <!-- Display: ๐Ÿž -->

URL Encoding:

// ๐Ÿž URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%8F%9E

Encodings

MD5:

fd3bbf645c009a55b43af231008cdbbc

SHA1:

c42dbd0c02d9f6ae0415f6ac87664df7eaa29892

Base64:

8J+Png==