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