Unicode Finder

"🏘" U+1F3D8(HOUSE BUILDINGS)

🏘
U+1F3D8
Название Блока
Miscellaneous Symbols and Pictographs
Название
HOUSE BUILDINGS

Programming

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

Web

CSS
\01F3D8
HtmlDecimal
🏘
HtmlHexadecimal
🏘
Url
%F0%9F%8F%98

Code

MD5
a8dcc1e7ba5069fd25f2e4abb2fb1655
Sha1
adf49feaa1a20f0f81852db8d3e861e99d8a2c0b
Base64
8J+PmA==

Примеры Использования

Programming Languages

C:

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

JavaScript:

const char = '\u1F3D8';
console.log(char);  // Output: 🏘

Java:

char c = '\u1F3D8';
System.out.println(c);  // Output: 🏘

JSON:

{"text": "\u1F3D8"}  // Value: 🏘

Python:

char = '\u1F3D8'
print(char)  # Output: 🏘

Perl:

my $char = "\x{1F3D8}";
print $char;  # Output: 🏘

PHP:

$char = "\x{1F3D8}";
echo $char;  // Output: 🏘

Ruby:

char = "\u{1F3D8}"
puts char  # Output: 🏘

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#127960;</p>  <!-- Display: 🏘 -->

HTML Hexadecimal:

<p>HTML hex: &#x1F3D8;</p>  <!-- Display: 🏘 -->

URL Encoding:

// 🏘 URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%8F%98

Encodings

MD5:

a8dcc1e7ba5069fd25f2e4abb2fb1655

SHA1:

adf49feaa1a20f0f81852db8d3e861e99d8a2c0b

Base64:

8J+PmA==