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