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