C:
char c = '\u8097';
printf("%c\n", c); // Output: 肗
JavaScript:
const char = '\u8097';
console.log(char); // Output: 肗
Java:
char c = '\u8097';
System.out.println(c); // Output: 肗
JSON:
{"text": "\u8097"} // Value: 肗
Python:
char = '\u8097'
print(char) # Output: 肗
Perl:
my $char = "\x{8097}";
print $char; # Output: 肗
PHP:
$char = "\x{8097}";
echo $char; // Output: 肗
Ruby:
char = "\u{8097}"
puts char # Output: 肗
Rust:
let c = '\u{8097}';
println!("{}", c); // Output: 肗
Go:
char := '\u8097'
fmt.Printf("%c\n", char) // Output: 肗
CSS:
/* CSS content property */
.element::before {
content: "\008097"; /* 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%97
MD5:
49e3bcf3f823274dc6f37aeb050de302
SHA1:
0258519ab32207e1d67d4e0891a6cf3586da3e6f
Base64:
6IKX