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