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