C:
char c = '\u9788';
printf("%c\n", c); // Output: 鞈
JavaScript:
const char = '\u9788';
console.log(char); // Output: 鞈
Java:
char c = '\u9788';
System.out.println(c); // Output: 鞈
JSON:
{"text": "\u9788"} // Value: 鞈
Python:
char = '\u9788'
print(char) # Output: 鞈
Perl:
my $char = "\x{9788}";
print $char; # Output: 鞈
PHP:
$char = "\x{9788}";
echo $char; // Output: 鞈
Ruby:
char = "\u{9788}"
puts char # Output: 鞈
Rust:
let c = '\u{9788}';
println!("{}", c); // Output: 鞈
Go:
char := '\u9788'
fmt.Printf("%c\n", char) // Output: 鞈
CSS:
/* CSS content property */
.element::before {
content: "\009788"; /* 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%88
MD5:
16c63cfe13cfa0717012feab61441482
SHA1:
a28bce09a9be5f83432ea59a1d71d7f7e46400b4
Base64:
6Z6I