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