C:
char c = '\u9185';
printf("%c\n", c); // Output: 醅
JavaScript:
const char = '\u9185';
console.log(char); // Output: 醅
Java:
char c = '\u9185';
System.out.println(c); // Output: 醅
JSON:
{"text": "\u9185"} // Value: 醅
Python:
char = '\u9185'
print(char) # Output: 醅
Perl:
my $char = "\x{9185}";
print $char; # Output: 醅
PHP:
$char = "\x{9185}";
echo $char; // Output: 醅
Ruby:
char = "\u{9185}"
puts char # Output: 醅
Rust:
let c = '\u{9185}';
println!("{}", c); // Output: 醅
Go:
char := '\u9185'
fmt.Printf("%c\n", char) // Output: 醅
CSS:
/* CSS content property */
.element::before {
content: "\009185"; /* 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%85
MD5:
1e846c38459609d3b89d2e007eaab726
SHA1:
2582fc4df7891afa467fc1e22aee387d330e804e
Base64:
6YaF