Unicode Finder

"πŸŒ‹" U+1F30B(VOLCANO)

πŸŒ‹
U+1F30B
Nome do Bloco
Miscellaneous Symbols and Pictographs
Nome
VOLCANO

Programming

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

Web

CSS
\01F30B
HtmlDecimal
🌋
HtmlHexadecimal
🌋
Url
%F0%9F%8C%8B

Code

MD5
f00fc67f30b9c9eed8c4aefd35e0993b
Sha1
c332125bcbf76d40a6f3c629bcfffde382f271da
Base64
8J+Miw==

Exemplos de Uso

Programming Languages

C:

char c = '\u1F30B';
printf("%c\n", c);  // Output: πŸŒ‹

JavaScript:

const char = '\u1F30B';
console.log(char);  // Output: πŸŒ‹

Java:

char c = '\u1F30B';
System.out.println(c);  // Output: πŸŒ‹

JSON:

{"text": "\u1F30B"}  // Value: πŸŒ‹

Python:

char = '\u1F30B'
print(char)  # Output: πŸŒ‹

Perl:

my $char = "\x{1F30B}";
print $char;  # Output: πŸŒ‹

PHP:

$char = "\x{1F30B}";
echo $char;  // Output: πŸŒ‹

Ruby:

char = "\u{1F30B}"
puts char  # Output: πŸŒ‹

Rust:

let c = '\u{1F30B}';
println!("{}", c);  // Output: πŸŒ‹

Go:

char := '\u1F30B'
fmt.Printf("%c\n", char)  // Output: πŸŒ‹

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\01F30B";  /* Display: πŸŒ‹ */
}

HTML Decimal:

<p>HTML decimal: &#127755;</p>  <!-- Display: πŸŒ‹ -->

HTML Hexadecimal:

<p>HTML hex: &#x1F30B;</p>  <!-- Display: πŸŒ‹ -->

URL Encoding:

// πŸŒ‹ URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%8C%8B

Encodings

MD5:

f00fc67f30b9c9eed8c4aefd35e0993b

SHA1:

c332125bcbf76d40a6f3c629bcfffde382f271da

Base64:

8J+Miw==