C:
char c = '\u8122';
printf("%c\n", c); // Output: 脢
JavaScript:
const char = '\u8122';
console.log(char); // Output: 脢
Java:
char c = '\u8122';
System.out.println(c); // Output: 脢
JSON:
{"text": "\u8122"} // Value: 脢
Python:
char = '\u8122'
print(char) # Output: 脢
Perl:
my $char = "\x{8122}";
print $char; # Output: 脢
PHP:
$char = "\x{8122}";
echo $char; // Output: 脢
Ruby:
char = "\u{8122}"
puts char # Output: 脢
Rust:
let c = '\u{8122}';
println!("{}", c); // Output: 脢
Go:
char := '\u8122'
fmt.Printf("%c\n", char) // Output: 脢
CSS:
/* CSS content property */
.element::before {
content: "\008122"; /* 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%A2
MD5:
1b1b1ba3784a08bd06d83933c2dcbb3f
SHA1:
76fb5be97809fca46cb0f80378ff68d43940a251
Base64:
6ISi