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