C:
char c = '\u8096';
printf("%c\n", c); // Output: 肖
JavaScript:
const char = '\u8096';
console.log(char); // Output: 肖
Java:
char c = '\u8096';
System.out.println(c); // Output: 肖
JSON:
{"text": "\u8096"} // Value: 肖
Python:
char = '\u8096'
print(char) # Output: 肖
Perl:
my $char = "\x{8096}";
print $char; # Output: 肖
PHP:
$char = "\x{8096}";
echo $char; // Output: 肖
Ruby:
char = "\u{8096}"
puts char # Output: 肖
Rust:
let c = '\u{8096}';
println!("{}", c); // Output: 肖
Go:
char := '\u8096'
fmt.Printf("%c\n", char) // Output: 肖
CSS:
/* CSS content property */
.element::before {
content: "\008096"; /* 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%96
MD5:
8230fb0ebcd7f05119390acf241f1824
SHA1:
04f27504fa7cf20a26ba9fb737d165d67d5393d0
Base64:
6IKW