C:
char c = '\u8092';
printf("%c\n", c); // Output: 肒
JavaScript:
const char = '\u8092';
console.log(char); // Output: 肒
Java:
char c = '\u8092';
System.out.println(c); // Output: 肒
JSON:
{"text": "\u8092"} // Value: 肒
Python:
char = '\u8092'
print(char) # Output: 肒
Perl:
my $char = "\x{8092}";
print $char; # Output: 肒
PHP:
$char = "\x{8092}";
echo $char; // Output: 肒
Ruby:
char = "\u{8092}"
puts char # Output: 肒
Rust:
let c = '\u{8092}';
println!("{}", c); // Output: 肒
Go:
char := '\u8092'
fmt.Printf("%c\n", char) // Output: 肒
CSS:
/* CSS content property */
.element::before {
content: "\008092"; /* 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%92
MD5:
b90de39651eb087a570ab80c8593a70d
SHA1:
9cd66b3251be73bc42ce9c6d95b3528c85330c35
Base64:
6IKS