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