C:
char c = '\u9184';
printf("%c\n", c); // Output: 醄
JavaScript:
const char = '\u9184';
console.log(char); // Output: 醄
Java:
char c = '\u9184';
System.out.println(c); // Output: 醄
JSON:
{"text": "\u9184"} // Value: 醄
Python:
char = '\u9184'
print(char) # Output: 醄
Perl:
my $char = "\x{9184}";
print $char; # Output: 醄
PHP:
$char = "\x{9184}";
echo $char; // Output: 醄
Ruby:
char = "\u{9184}"
puts char # Output: 醄
Rust:
let c = '\u{9184}';
println!("{}", c); // Output: 醄
Go:
char := '\u9184'
fmt.Printf("%c\n", char) // Output: 醄
CSS:
/* CSS content property */
.element::before {
content: "\009184"; /* 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%84
MD5:
2e5831163920a847a5063faa20d68372
SHA1:
792799261a36fc612cec7e4ddc2c0f789fafcfa7
Base64:
6YaE