C:
char c = '\u8099';
printf("%c\n", c); // Output: 肙
JavaScript:
const char = '\u8099';
console.log(char); // Output: 肙
Java:
char c = '\u8099';
System.out.println(c); // Output: 肙
JSON:
{"text": "\u8099"} // Value: 肙
Python:
char = '\u8099'
print(char) # Output: 肙
Perl:
my $char = "\x{8099}";
print $char; # Output: 肙
PHP:
$char = "\x{8099}";
echo $char; // Output: 肙
Ruby:
char = "\u{8099}"
puts char # Output: 肙
Rust:
let c = '\u{8099}';
println!("{}", c); // Output: 肙
Go:
char := '\u8099'
fmt.Printf("%c\n", char) // Output: 肙
CSS:
/* CSS content property */
.element::before {
content: "\008099"; /* 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%99
MD5:
d75d8ef87734415df3cdd86919d14c16
SHA1:
88db2b9f2888b883698e6db7b803fdb5fe800d2c
Base64:
6IKZ