C:
char c = '\u8210';
printf("%c\n", c); // Output: 舐
JavaScript:
const char = '\u8210';
console.log(char); // Output: 舐
Java:
char c = '\u8210';
System.out.println(c); // Output: 舐
JSON:
{"text": "\u8210"} // Value: 舐
Python:
char = '\u8210'
print(char) # Output: 舐
Perl:
my $char = "\x{8210}";
print $char; # Output: 舐
PHP:
$char = "\x{8210}";
echo $char; // Output: 舐
Ruby:
char = "\u{8210}"
puts char # Output: 舐
Rust:
let c = '\u{8210}';
println!("{}", c); // Output: 舐
Go:
char := '\u8210'
fmt.Printf("%c\n", char) // Output: 舐
CSS:
/* CSS content property */
.element::before {
content: "\008210"; /* 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=%E8%88%90
MD5:
a61bc481367910c42d418a72659f4f88
SHA1:
2d18e3945ac0c8744cb5597ff6a056e7a98ecf0e
Base64:
6IiQ