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