C:
char c = '\u97AF';
printf("%c\n", c); // Output: 鞯
JavaScript:
const char = '\u97AF';
console.log(char); // Output: 鞯
Java:
char c = '\u97AF';
System.out.println(c); // Output: 鞯
JSON:
{"text": "\u97AF"} // Value: 鞯
Python:
char = '\u97AF'
print(char) # Output: 鞯
Perl:
my $char = "\x{97AF}";
print $char; # Output: 鞯
PHP:
$char = "\x{97AF}";
echo $char; // Output: 鞯
Ruby:
char = "\u{97AF}"
puts char # Output: 鞯
Rust:
let c = '\u{97AF}';
println!("{}", c); // Output: 鞯
Go:
char := '\u97AF'
fmt.Printf("%c\n", char) // Output: 鞯
CSS:
/* CSS content property */
.element::before {
content: "\0097AF"; /* 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%9E%AF
MD5:
fc3dbf6b37c000af16c308c37475a331
SHA1:
d2a04d345b4b0734a8c81d11f1412260b6632271
Base64:
6Z6v