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