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