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