C:
char c = '\u8953';
printf("%c\n", c); // Output: 襓
JavaScript:
const char = '\u8953';
console.log(char); // Output: 襓
Java:
char c = '\u8953';
System.out.println(c); // Output: 襓
JSON:
{"text": "\u8953"} // Value: 襓
Python:
char = '\u8953'
print(char) # Output: 襓
Perl:
my $char = "\x{8953}";
print $char; # Output: 襓
PHP:
$char = "\x{8953}";
echo $char; // Output: 襓
Ruby:
char = "\u{8953}"
puts char # Output: 襓
Rust:
let c = '\u{8953}';
println!("{}", c); // Output: 襓
Go:
char := '\u8953'
fmt.Printf("%c\n", char) // Output: 襓
CSS:
/* CSS content property */
.element::before {
content: "\008953"; /* 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%93
MD5:
ea363f4d54f8f39f15cc5b034e4bb205
SHA1:
2dc59c564ed997a42095e1f019e89b3ce5667ec4
Base64:
6KWT