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