Unicode Finder

"๐Ÿ—ผ" U+1F5FC(TOKYO TOWER)

๐Ÿ—ผ
U+1F5FC
Block Name
Miscellaneous Symbols and Pictographs
Name
TOKYO TOWER

Programming

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

Web

CSS
\01F5FC
HtmlDecimal
🗼
HtmlHexadecimal
🗼
Url
%F0%9F%97%BC

Code

MD5
5f29e65307b684ea058f83cb2bd651d9
Sha1
e404c8e643cb2fca150d8170176c6aafa2ba8da8
Base64
8J+XvA==

Usage Examples

Programming Languages

C:

char c = '\u1F5FC';
printf("%c\n", c);  // Output: ๐Ÿ—ผ

JavaScript:

const char = '\u1F5FC';
console.log(char);  // Output: ๐Ÿ—ผ

Java:

char c = '\u1F5FC';
System.out.println(c);  // Output: ๐Ÿ—ผ

JSON:

{"text": "\u1F5FC"}  // Value: ๐Ÿ—ผ

Python:

char = '\u1F5FC'
print(char)  # Output: ๐Ÿ—ผ

Perl:

my $char = "\x{1F5FC}";
print $char;  # Output: ๐Ÿ—ผ

PHP:

$char = "\x{1F5FC}";
echo $char;  // Output: ๐Ÿ—ผ

Ruby:

char = "\u{1F5FC}"
puts char  # Output: ๐Ÿ—ผ

Rust:

let c = '\u{1F5FC}';
println!("{}", c);  // Output: ๐Ÿ—ผ

Go:

char := '\u1F5FC'
fmt.Printf("%c\n", char)  // Output: ๐Ÿ—ผ

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\01F5FC";  /* Display: ๐Ÿ—ผ */
}

HTML Decimal:

<p>HTML decimal: &#128508;</p>  <!-- Display: ๐Ÿ—ผ -->

HTML Hexadecimal:

<p>HTML hex: &#x1F5FC;</p>  <!-- Display: ๐Ÿ—ผ -->

URL Encoding:

// ๐Ÿ—ผ URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%97%BC

Encodings

MD5:

5f29e65307b684ea058f83cb2bd651d9

SHA1:

e404c8e643cb2fca150d8170176c6aafa2ba8da8

Base64:

8J+XvA==