C:
char c = '\u1F873';
printf("%c\n", c); // Output: π‘³
JavaScript:
const char = '\u1F873';
console.log(char); // Output: π‘³
Java:
char c = '\u1F873';
System.out.println(c); // Output: π‘³
JSON:
{"text": "\u1F873"} // Value: π‘³
Python:
char = '\u1F873'
print(char) # Output: π‘³
Perl:
my $char = "\x{1F873}";
print $char; # Output: π‘³
PHP:
$char = "\x{1F873}";
echo $char; // Output: π‘³
Ruby:
char = "\u{1F873}"
puts char # Output: π‘³
Rust:
let c = '\u{1F873}';
println!("{}", c); // Output: π‘³
Go:
char := '\u1F873'
fmt.Printf("%c\n", char) // Output: π‘³
CSS:
/* CSS content property */
.element::before {
content: "\01F873"; /* 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%A1%B3
MD5:
647905f51654f3195789c8f0509c6fc1
SHA1:
71d42e493cc99390564c23ecdd74ec311d221753
Base64:
8J+hsw==