C:
char c = '\u8120';
printf("%c\n", c); // Output: 脠
JavaScript:
const char = '\u8120';
console.log(char); // Output: 脠
Java:
char c = '\u8120';
System.out.println(c); // Output: 脠
JSON:
{"text": "\u8120"} // Value: 脠
Python:
char = '\u8120'
print(char) # Output: 脠
Perl:
my $char = "\x{8120}";
print $char; # Output: 脠
PHP:
$char = "\x{8120}";
echo $char; // Output: 脠
Ruby:
char = "\u{8120}"
puts char # Output: 脠
Rust:
let c = '\u{8120}';
println!("{}", c); // Output: 脠
Go:
char := '\u8120'
fmt.Printf("%c\n", char) // Output: 脠
CSS:
/* CSS content property */
.element::before {
content: "\008120"; /* 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%84%A0
MD5:
7c207cd4483f9eb32750f810f82946da
SHA1:
24130c269a83a95775cff6f9d8b7a6f834456b54
Base64:
6ISg