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