C:
char c = '\u1F5FA';
printf("%c\n", c); // Output: 🗺
JavaScript:
const char = '\u1F5FA';
console.log(char); // Output: 🗺
Java:
char c = '\u1F5FA';
System.out.println(c); // Output: 🗺
JSON:
{"text": "\u1F5FA"} // Value: 🗺
Python:
char = '\u1F5FA'
print(char) # Output: 🗺
Perl:
my $char = "\x{1F5FA}";
print $char; # Output: 🗺
PHP:
$char = "\x{1F5FA}";
echo $char; // Output: 🗺
Ruby:
char = "\u{1F5FA}"
puts char # Output: 🗺
Rust:
let c = '\u{1F5FA}';
println!("{}", c); // Output: 🗺
Go:
char := '\u1F5FA'
fmt.Printf("%c\n", char) // Output: 🗺
CSS:
/* CSS content property */
.element::before {
content: "\01F5FA"; /* 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%97%BA
MD5:
02461aaf15e349d22d6e4457fbd3129c
SHA1:
7c410608b1b713f6264721bccff1533ac620ade8
Base64:
8J+Xug==