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