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