C:
char c = '\u9182';
printf("%c\n", c); // Output: 醂
JavaScript:
const char = '\u9182';
console.log(char); // Output: 醂
Java:
char c = '\u9182';
System.out.println(c); // Output: 醂
JSON:
{"text": "\u9182"} // Value: 醂
Python:
char = '\u9182'
print(char) # Output: 醂
Perl:
my $char = "\x{9182}";
print $char; # Output: 醂
PHP:
$char = "\x{9182}";
echo $char; // Output: 醂
Ruby:
char = "\u{9182}"
puts char # Output: 醂
Rust:
let c = '\u{9182}';
println!("{}", c); // Output: 醂
Go:
char := '\u9182'
fmt.Printf("%c\n", char) // Output: 醂
CSS:
/* CSS content property */
.element::before {
content: "\009182"; /* 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%82
MD5:
8c6919de5cc433c55a94dc3dce61d7b4
SHA1:
e07c7917dc33c098d37529c02fc04d45c007fd7b
Base64:
6YaC