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