C:
char c = '\u80A4';
printf("%c\n", c); // Output: 肤
JavaScript:
const char = '\u80A4';
console.log(char); // Output: 肤
Java:
char c = '\u80A4';
System.out.println(c); // Output: 肤
JSON:
{"text": "\u80A4"} // Value: 肤
Python:
char = '\u80A4'
print(char) # Output: 肤
Perl:
my $char = "\x{80A4}";
print $char; # Output: 肤
PHP:
$char = "\x{80A4}";
echo $char; // Output: 肤
Ruby:
char = "\u{80A4}"
puts char # Output: 肤
Rust:
let c = '\u{80A4}';
println!("{}", c); // Output: 肤
Go:
char := '\u80A4'
fmt.Printf("%c\n", char) // Output: 肤
CSS:
/* CSS content property */
.element::before {
content: "\0080A4"; /* 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%A4
MD5:
3609c73a0b98d5c3433509c9ace9dce2
SHA1:
cdc600e94d5f332488befe0741681c129da60b0c
Base64:
6IKk