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