Unicode Finder

"πŸ—»" U+1F5FB(MOUNT FUJI)

πŸ—»
U+1F5FB
Block Name
Miscellaneous Symbols and Pictographs
Name
MOUNT FUJI

Programming

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

Web

CSS
\01F5FB
HtmlDecimal
🗻
HtmlHexadecimal
🗻
Url
%F0%9F%97%BB

Code

MD5
a720e860733cdca493fd10b5dbe845d2
Sha1
0cfa7261c11f163c5deaf2ebc3c66f83ccc48f3e
Base64
8J+Xuw==

Usage Examples

Programming Languages

C:

char c = '\u1F5FB';
printf("%c\n", c);  // Output: πŸ—»

JavaScript:

const char = '\u1F5FB';
console.log(char);  // Output: πŸ—»

Java:

char c = '\u1F5FB';
System.out.println(c);  // Output: πŸ—»

JSON:

{"text": "\u1F5FB"}  // Value: πŸ—»

Python:

char = '\u1F5FB'
print(char)  # Output: πŸ—»

Perl:

my $char = "\x{1F5FB}";
print $char;  # Output: πŸ—»

PHP:

$char = "\x{1F5FB}";
echo $char;  // Output: πŸ—»

Ruby:

char = "\u{1F5FB}"
puts char  # Output: πŸ—»

Rust:

let c = '\u{1F5FB}';
println!("{}", c);  // Output: πŸ—»

Go:

char := '\u1F5FB'
fmt.Printf("%c\n", char)  // Output: πŸ—»

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\01F5FB";  /* Display: πŸ—» */
}

HTML Decimal:

<p>HTML decimal: &#128507;</p>  <!-- Display: πŸ—» -->

HTML Hexadecimal:

<p>HTML hex: &#x1F5FB;</p>  <!-- Display: πŸ—» -->

URL Encoding:

// πŸ—» URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%97%BB

Encodings

MD5:

a720e860733cdca493fd10b5dbe845d2

SHA1:

0cfa7261c11f163c5deaf2ebc3c66f83ccc48f3e

Base64:

8J+Xuw==