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