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