C:
char c = '\u8961';
printf("%c\n", c); // Output: 襡
JavaScript:
const char = '\u8961';
console.log(char); // Output: 襡
Java:
char c = '\u8961';
System.out.println(c); // Output: 襡
JSON:
{"text": "\u8961"} // Value: 襡
Python:
char = '\u8961'
print(char) # Output: 襡
Perl:
my $char = "\x{8961}";
print $char; # Output: 襡
PHP:
$char = "\x{8961}";
echo $char; // Output: 襡
Ruby:
char = "\u{8961}"
puts char # Output: 襡
Rust:
let c = '\u{8961}';
println!("{}", c); // Output: 襡
Go:
char := '\u8961'
fmt.Printf("%c\n", char) // Output: 襡
CSS:
/* CSS content property */
.element::before {
content: "\008961"; /* 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%A1
MD5:
723e97915eb6d9b3ac35a150836e4bf9
SHA1:
e7be75aeb41baa472816e5ea66d73cc6d7ab20cf
Base64:
6KWh