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