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