C:
char c = '\u8971';
printf("%c\n", c); // Output: 襱
JavaScript:
const char = '\u8971';
console.log(char); // Output: 襱
Java:
char c = '\u8971';
System.out.println(c); // Output: 襱
JSON:
{"text": "\u8971"} // Value: 襱
Python:
char = '\u8971'
print(char) # Output: 襱
Perl:
my $char = "\x{8971}";
print $char; # Output: 襱
PHP:
$char = "\x{8971}";
echo $char; // Output: 襱
Ruby:
char = "\u{8971}"
puts char # Output: 襱
Rust:
let c = '\u{8971}';
println!("{}", c); // Output: 襱
Go:
char := '\u8971'
fmt.Printf("%c\n", char) // Output: 襱
CSS:
/* CSS content property */
.element::before {
content: "\008971"; /* 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%B1
MD5:
0d63d04be388f865d80e2d5561993821
SHA1:
7a6b15647d2220e25f6cdda8da049fb48ae413d4
Base64:
6KWx