C:
char c = '\u8094';
printf("%c\n", c); // Output: 肔
JavaScript:
const char = '\u8094';
console.log(char); // Output: 肔
Java:
char c = '\u8094';
System.out.println(c); // Output: 肔
JSON:
{"text": "\u8094"} // Value: 肔
Python:
char = '\u8094'
print(char) # Output: 肔
Perl:
my $char = "\x{8094}";
print $char; # Output: 肔
PHP:
$char = "\x{8094}";
echo $char; // Output: 肔
Ruby:
char = "\u{8094}"
puts char # Output: 肔
Rust:
let c = '\u{8094}';
println!("{}", c); // Output: 肔
Go:
char := '\u8094'
fmt.Printf("%c\n", char) // Output: 肔
CSS:
/* CSS content property */
.element::before {
content: "\008094"; /* 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%82%94
MD5:
6af0b27e27879780490d9bbc7a7e0de8
SHA1:
d6a5c6d179bc5ced7373bcabe973b6931d90feb9
Base64:
6IKU