C:
char c = '\u9789';
printf("%c\n", c); // Output: 鞉
JavaScript:
const char = '\u9789';
console.log(char); // Output: 鞉
Java:
char c = '\u9789';
System.out.println(c); // Output: 鞉
JSON:
{"text": "\u9789"} // Value: 鞉
Python:
char = '\u9789'
print(char) # Output: 鞉
Perl:
my $char = "\x{9789}";
print $char; # Output: 鞉
PHP:
$char = "\x{9789}";
echo $char; // Output: 鞉
Ruby:
char = "\u{9789}"
puts char # Output: 鞉
Rust:
let c = '\u{9789}';
println!("{}", c); // Output: 鞉
Go:
char := '\u9789'
fmt.Printf("%c\n", char) // Output: 鞉
CSS:
/* CSS content property */
.element::before {
content: "\009789"; /* 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%89
MD5:
4a89f65e869941da1fa585048b33ccf6
SHA1:
222812c55c9850b5163cb797ef6a13883dbefc9f
Base64:
6Z6J