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