C:
char c = '\u1F3DB';
printf("%c\n", c); // Output: 🏛
JavaScript:
const char = '\u1F3DB';
console.log(char); // Output: 🏛
Java:
char c = '\u1F3DB';
System.out.println(c); // Output: 🏛
JSON:
{"text": "\u1F3DB"} // Value: 🏛
Python:
char = '\u1F3DB'
print(char) # Output: 🏛
Perl:
my $char = "\x{1F3DB}";
print $char; # Output: 🏛
PHP:
$char = "\x{1F3DB}";
echo $char; // Output: 🏛
Ruby:
char = "\u{1F3DB}"
puts char # Output: 🏛
Rust:
let c = '\u{1F3DB}';
println!("{}", c); // Output: 🏛
Go:
char := '\u1F3DB'
fmt.Printf("%c\n", char) // Output: 🏛
CSS:
/* CSS content property */
.element::before {
content: "\01F3DB"; /* Display: 🏛 */
}
HTML Decimal:
<p>HTML decimal: 🏛</p> <!-- Display: 🏛 -->
HTML Hexadecimal:
<p>HTML hex: 🏛</p> <!-- Display: 🏛 -->
URL Encoding:
// 🏛 URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%8F%9B
MD5:
abb498e651aa75de3911bc678371291c
SHA1:
306cf5fbdd53724695599672bcf182a7696e79bc
Base64:
8J+Pmw==