Unicode Finder

"🌏" U+1F30F(EARTH GLOBE ASIA-AUSTRALIA)

🌏
U+1F30F
블둝 이름
Miscellaneous Symbols and Pictographs
이름
EARTH GLOBE ASIA-AUSTRALIA

Programming

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

Web

CSS
\01F30F
HtmlDecimal
🌏
HtmlHexadecimal
🌏
Url
%F0%9F%8C%8F

Code

MD5
a22037f26b921817253a21a5aae718e9
Sha1
ade4ad2750e89b5dbe21942b103b3ed4bc783285
Base64
8J+Mjw==

μ‚¬μš© μ˜ˆμ‹œ

Programming Languages

C:

char c = '\u1F30F';
printf("%c\n", c);  // Output: 🌏

JavaScript:

const char = '\u1F30F';
console.log(char);  // Output: 🌏

Java:

char c = '\u1F30F';
System.out.println(c);  // Output: 🌏

JSON:

{"text": "\u1F30F"}  // Value: 🌏

Python:

char = '\u1F30F'
print(char)  # Output: 🌏

Perl:

my $char = "\x{1F30F}";
print $char;  # Output: 🌏

PHP:

$char = "\x{1F30F}";
echo $char;  // Output: 🌏

Ruby:

char = "\u{1F30F}"
puts char  # Output: 🌏

Rust:

let c = '\u{1F30F}';
println!("{}", c);  // Output: 🌏

Go:

char := '\u1F30F'
fmt.Printf("%c\n", char)  // Output: 🌏

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\01F30F";  /* Display: 🌏 */
}

HTML Decimal:

<p>HTML decimal: &#127759;</p>  <!-- Display: 🌏 -->

HTML Hexadecimal:

<p>HTML hex: &#x1F30F;</p>  <!-- Display: 🌏 -->

URL Encoding:

// 🌏 URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%8C%8F

Encodings

MD5:

a22037f26b921817253a21a5aae718e9

SHA1:

ade4ad2750e89b5dbe21942b103b3ed4bc783285

Base64:

8J+Mjw==