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