C:
char c = '\u8090';
printf("%c\n", c); // Output: 肐
JavaScript:
const char = '\u8090';
console.log(char); // Output: 肐
Java:
char c = '\u8090';
System.out.println(c); // Output: 肐
JSON:
{"text": "\u8090"} // Value: 肐
Python:
char = '\u8090'
print(char) # Output: 肐
Perl:
my $char = "\x{8090}";
print $char; # Output: 肐
PHP:
$char = "\x{8090}";
echo $char; // Output: 肐
Ruby:
char = "\u{8090}"
puts char # Output: 肐
Rust:
let c = '\u{8090}';
println!("{}", c); // Output: 肐
Go:
char := '\u8090'
fmt.Printf("%c\n", char) // Output: 肐
CSS:
/* CSS content property */
.element::before {
content: "\008090"; /* 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%90
MD5:
4d6c5d5ce1093c887aa994cf58635458
SHA1:
dfb786c016bde9bc2aaad592f6d97dbbd8d18629
Base64:
6IKQ