C:
char c = '\u9168';
printf("%c\n", c); // Output: 酨
JavaScript:
const char = '\u9168';
console.log(char); // Output: 酨
Java:
char c = '\u9168';
System.out.println(c); // Output: 酨
JSON:
{"text": "\u9168"} // Value: 酨
Python:
char = '\u9168'
print(char) # Output: 酨
Perl:
my $char = "\x{9168}";
print $char; # Output: 酨
PHP:
$char = "\x{9168}";
echo $char; // Output: 酨
Ruby:
char = "\u{9168}"
puts char # Output: 酨
Rust:
let c = '\u{9168}';
println!("{}", c); // Output: 酨
Go:
char := '\u9168'
fmt.Printf("%c\n", char) // Output: 酨
CSS:
/* CSS content property */
.element::before {
content: "\009168"; /* 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%A8
MD5:
35fee571dec3d61560e195670f9f8c53
SHA1:
966fed5856172fa240c6c13da433e10c1556268a
Base64:
6YWo