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