Unicode Finder

"๐Ÿข" U+1F3E2(OFFICE BUILDING)

๐Ÿข
U+1F3E2
Nome del Blocco
Miscellaneous Symbols and Pictographs
Nome
OFFICE BUILDING

Programming

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

Web

CSS
\01F3E2
HtmlDecimal
🏢
HtmlHexadecimal
🏢
Url
%F0%9F%8F%A2

Code

MD5
b20c9e16879ab40183ad96b559535ee1
Sha1
28effe4a937962fe981c65c17883a121c58894a7
Base64
8J+Pog==

Esempi di Utilizzo

Programming Languages

C:

char c = '\u1F3E2';
printf("%c\n", c);  // Output: ๐Ÿข

JavaScript:

const char = '\u1F3E2';
console.log(char);  // Output: ๐Ÿข

Java:

char c = '\u1F3E2';
System.out.println(c);  // Output: ๐Ÿข

JSON:

{"text": "\u1F3E2"}  // Value: ๐Ÿข

Python:

char = '\u1F3E2'
print(char)  # Output: ๐Ÿข

Perl:

my $char = "\x{1F3E2}";
print $char;  # Output: ๐Ÿข

PHP:

$char = "\x{1F3E2}";
echo $char;  // Output: ๐Ÿข

Ruby:

char = "\u{1F3E2}"
puts char  # Output: ๐Ÿข

Rust:

let c = '\u{1F3E2}';
println!("{}", c);  // Output: ๐Ÿข

Go:

char := '\u1F3E2'
fmt.Printf("%c\n", char)  // Output: ๐Ÿข

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\01F3E2";  /* Display: ๐Ÿข */
}

HTML Decimal:

<p>HTML decimal: &#127970;</p>  <!-- Display: ๐Ÿข -->

HTML Hexadecimal:

<p>HTML hex: &#x1F3E2;</p>  <!-- Display: ๐Ÿข -->

URL Encoding:

// ๐Ÿข URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%8F%A2

Encodings

MD5:

b20c9e16879ab40183ad96b559535ee1

SHA1:

28effe4a937962fe981c65c17883a121c58894a7

Base64:

8J+Pog==