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