C:
char c = '\u8948';
printf("%c\n", c); // Output: 襈
JavaScript:
const char = '\u8948';
console.log(char); // Output: 襈
Java:
char c = '\u8948';
System.out.println(c); // Output: 襈
JSON:
{"text": "\u8948"} // Value: 襈
Python:
char = '\u8948'
print(char) # Output: 襈
Perl:
my $char = "\x{8948}";
print $char; # Output: 襈
PHP:
$char = "\x{8948}";
echo $char; // Output: 襈
Ruby:
char = "\u{8948}"
puts char # Output: 襈
Rust:
let c = '\u{8948}';
println!("{}", c); // Output: 襈
Go:
char := '\u8948'
fmt.Printf("%c\n", char) // Output: 襈
CSS:
/* CSS content property */
.element::before {
content: "\008948"; /* 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%88
MD5:
c86d2efda5a9fcad5909c2ef968de42d
SHA1:
ccd5cf27a3ac5a8acde7223cb359a0b74feae74f
Base64:
6KWI