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==