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