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