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