C:
char c = '\u8091';
printf("%c\n", c); // Output: 肑
JavaScript:
const char = '\u8091';
console.log(char); // Output: 肑
Java:
char c = '\u8091';
System.out.println(c); // Output: 肑
JSON:
{"text": "\u8091"} // Value: 肑
Python:
char = '\u8091'
print(char) # Output: 肑
Perl:
my $char = "\x{8091}";
print $char; # Output: 肑
PHP:
$char = "\x{8091}";
echo $char; // Output: 肑
Ruby:
char = "\u{8091}"
puts char # Output: 肑
Rust:
let c = '\u{8091}';
println!("{}", c); // Output: 肑
Go:
char := '\u8091'
fmt.Printf("%c\n", char) // Output: 肑
CSS:
/* CSS content property */
.element::before {
content: "\008091"; /* 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%91
MD5:
a1323d12b66b8216f8af83d0537eee1d
SHA1:
01b0e590e6a44110592806ac9ffcbba62655f74f
Base64:
6IKR