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