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