C:
char c = '\u1F8AA';
printf("%c\n", c); // Output: π’ͺ
JavaScript:
const char = '\u1F8AA';
console.log(char); // Output: π’ͺ
Java:
char c = '\u1F8AA';
System.out.println(c); // Output: π’ͺ
JSON:
{"text": "\u1F8AA"} // Value: π’ͺ
Python:
char = '\u1F8AA'
print(char) # Output: π’ͺ
Perl:
my $char = "\x{1F8AA}";
print $char; # Output: π’ͺ
PHP:
$char = "\x{1F8AA}";
echo $char; // Output: π’ͺ
Ruby:
char = "\u{1F8AA}"
puts char # Output: π’ͺ
Rust:
let c = '\u{1F8AA}';
println!("{}", c); // Output: π’ͺ
Go:
char := '\u1F8AA'
fmt.Printf("%c\n", char) // Output: π’ͺ
CSS:
/* CSS content property */
.element::before {
content: "\01F8AA"; /* 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%A2%AA
MD5:
5dd7c57a5d0e5985ecb860934fa34cf2
SHA1:
026cdee5ab17e2ec38b66091f9decf04b4299a08
Base64:
8J+iqg==