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