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