C:
char c = '\u9A23';
printf("%c\n", c); // Output: 騣
JavaScript:
const char = '\u9A23';
console.log(char); // Output: 騣
Java:
char c = '\u9A23';
System.out.println(c); // Output: 騣
JSON:
{"text": "\u9A23"} // Value: 騣
Python:
char = '\u9A23'
print(char) # Output: 騣
Perl:
my $char = "\x{9A23}";
print $char; # Output: 騣
PHP:
$char = "\x{9A23}";
echo $char; // Output: 騣
Ruby:
char = "\u{9A23}"
puts char # Output: 騣
Rust:
let c = '\u{9A23}';
println!("{}", c); // Output: 騣
Go:
char := '\u9A23'
fmt.Printf("%c\n", char) // Output: 騣
CSS:
/* CSS content property */
.element::before {
content: "\009A23"; /* 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%A8%A3
MD5:
386d9e130c3f3e604ed775ca8ec44efd
SHA1:
fab3ffae8674b3efce95ba17b91dd85b24e51662
Base64:
6aij