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