C:
char c = '\u8966';
printf("%c\n", c); // Output: 襦
JavaScript:
const char = '\u8966';
console.log(char); // Output: 襦
Java:
char c = '\u8966';
System.out.println(c); // Output: 襦
JSON:
{"text": "\u8966"} // Value: 襦
Python:
char = '\u8966'
print(char) # Output: 襦
Perl:
my $char = "\x{8966}";
print $char; # Output: 襦
PHP:
$char = "\x{8966}";
echo $char; // Output: 襦
Ruby:
char = "\u{8966}"
puts char # Output: 襦
Rust:
let c = '\u{8966}';
println!("{}", c); // Output: 襦
Go:
char := '\u8966'
fmt.Printf("%c\n", char) // Output: 襦
CSS:
/* CSS content property */
.element::before {
content: "\008966"; /* 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=%E8%A5%A6
MD5:
7535cee5d16eaa2c76509b48ebe05988
SHA1:
162279f274a631764036913d7077ab9025416768
Base64:
6KWm