Unicode Finder

"🌐" U+1F310(GLOBE WITH MERIDIANS)

🌐
U+1F310
Nome do Bloco
Miscellaneous Symbols and Pictographs
Nome
GLOBE WITH MERIDIANS

Programming

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

Web

CSS
\01F310
HtmlDecimal
🌐
HtmlHexadecimal
🌐
Url
%F0%9F%8C%90

Code

MD5
c485b7bfb6dddc0e68359b58c67168a6
Sha1
c21061a256b6e915103fa85935170289a16cad5b
Base64
8J+MkA==

Exemplos de Uso

Programming Languages

C:

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

JavaScript:

const char = '\u1F310';
console.log(char);  // Output: 🌐

Java:

char c = '\u1F310';
System.out.println(c);  // Output: 🌐

JSON:

{"text": "\u1F310"}  // Value: 🌐

Python:

char = '\u1F310'
print(char)  # Output: 🌐

Perl:

my $char = "\x{1F310}";
print $char;  # Output: 🌐

PHP:

$char = "\x{1F310}";
echo $char;  // Output: 🌐

Ruby:

char = "\u{1F310}"
puts char  # Output: 🌐

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#127760;</p>  <!-- Display: 🌐 -->

HTML Hexadecimal:

<p>HTML hex: &#x1F310;</p>  <!-- Display: 🌐 -->

URL Encoding:

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

Encodings

MD5:

c485b7bfb6dddc0e68359b58c67168a6

SHA1:

c21061a256b6e915103fa85935170289a16cad5b

Base64:

8J+MkA==