C:
char c = '\u90D0';
printf("%c\n", c); // Output: 郐
JavaScript:
const char = '\u90D0';
console.log(char); // Output: 郐
Java:
char c = '\u90D0';
System.out.println(c); // Output: 郐
JSON:
{"text": "\u90D0"} // Value: 郐
Python:
char = '\u90D0'
print(char) # Output: 郐
Perl:
my $char = "\x{90D0}";
print $char; # Output: 郐
PHP:
$char = "\x{90D0}";
echo $char; // Output: 郐
Ruby:
char = "\u{90D0}"
puts char # Output: 郐
Rust:
let c = '\u{90D0}';
println!("{}", c); // Output: 郐
Go:
char := '\u90D0'
fmt.Printf("%c\n", char) // Output: 郐
CSS:
/* CSS content property */
.element::before {
content: "\0090D0"; /* 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%83%90
MD5:
a5917ea111d81ffafe8663d52f8563e7
SHA1:
b32a82188d5ddf79b7c57cb6ae6dcd5bea1c290c
Base64:
6YOQ