C:
char c = '\u91A5';
printf("%c\n", c); // Output: 醥
JavaScript:
const char = '\u91A5';
console.log(char); // Output: 醥
Java:
char c = '\u91A5';
System.out.println(c); // Output: 醥
JSON:
{"text": "\u91A5"} // Value: 醥
Python:
char = '\u91A5'
print(char) # Output: 醥
Perl:
my $char = "\x{91A5}";
print $char; # Output: 醥
PHP:
$char = "\x{91A5}";
echo $char; // Output: 醥
Ruby:
char = "\u{91A5}"
puts char # Output: 醥
Rust:
let c = '\u{91A5}';
println!("{}", c); // Output: 醥
Go:
char := '\u91A5'
fmt.Printf("%c\n", char) // Output: 醥
CSS:
/* CSS content property */
.element::before {
content: "\0091A5"; /* 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=%E9%86%A5
MD5:
ac9812e460e1feda4950313c222f116c
SHA1:
0670c8ccb84a3dc876c9f826714d5836f3965466
Base64:
6Yal