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