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