C:
char c = '\u9186';
printf("%c\n", c); // Output: 醆
JavaScript:
const char = '\u9186';
console.log(char); // Output: 醆
Java:
char c = '\u9186';
System.out.println(c); // Output: 醆
JSON:
{"text": "\u9186"} // Value: 醆
Python:
char = '\u9186'
print(char) # Output: 醆
Perl:
my $char = "\x{9186}";
print $char; # Output: 醆
PHP:
$char = "\x{9186}";
echo $char; // Output: 醆
Ruby:
char = "\u{9186}"
puts char # Output: 醆
Rust:
let c = '\u{9186}';
println!("{}", c); // Output: 醆
Go:
char := '\u9186'
fmt.Printf("%c\n", char) // Output: 醆
CSS:
/* CSS content property */
.element::before {
content: "\009186"; /* 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%86
MD5:
ca5ed6e17e4358e05bbfb994181213de
SHA1:
b3b756bce8309bb3fe21b10e86e66d35dd097131
Base64:
6YaG