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