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