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