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