C:
char c = '\u1F5AB';
printf("%c\n", c); // Output: ๐ซ
JavaScript:
const char = '\u1F5AB';
console.log(char); // Output: ๐ซ
Java:
char c = '\u1F5AB';
System.out.println(c); // Output: ๐ซ
JSON:
{"text": "\u1F5AB"} // Value: ๐ซ
Python:
char = '\u1F5AB'
print(char) # Output: ๐ซ
Perl:
my $char = "\x{1F5AB}";
print $char; # Output: ๐ซ
PHP:
$char = "\x{1F5AB}";
echo $char; // Output: ๐ซ
Ruby:
char = "\u{1F5AB}"
puts char # Output: ๐ซ
Rust:
let c = '\u{1F5AB}';
println!("{}", c); // Output: ๐ซ
Go:
char := '\u1F5AB'
fmt.Printf("%c\n", char) // Output: ๐ซ
CSS:
/* CSS content property */
.element::before {
content: "\01F5AB"; /* 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%96%AB
MD5:
b2d7565de4dc508e645f8a5aecfe1690
SHA1:
670bf8ff5f4f9529f18250d6a7aafbc7eb4260a8
Base64:
8J+Wqw==