C:
char c = '\u9148';
printf("%c\n", c); // Output: 酈
JavaScript:
const char = '\u9148';
console.log(char); // Output: 酈
Java:
char c = '\u9148';
System.out.println(c); // Output: 酈
JSON:
{"text": "\u9148"} // Value: 酈
Python:
char = '\u9148'
print(char) # Output: 酈
Perl:
my $char = "\x{9148}";
print $char; # Output: 酈
PHP:
$char = "\x{9148}";
echo $char; // Output: 酈
Ruby:
char = "\u{9148}"
puts char # Output: 酈
Rust:
let c = '\u{9148}';
println!("{}", c); // Output: 酈
Go:
char := '\u9148'
fmt.Printf("%c\n", char) // Output: 酈
CSS:
/* CSS content property */
.element::before {
content: "\009148"; /* 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%88
MD5:
ca3d9855bd718f91aa2b9cc8028d5cf0
SHA1:
3a51f04761496aefa64677cfc9c887c11526d49e
Base64:
6YWI