C:
char c = '\u8952';
printf("%c\n", c); // Output: 襒
JavaScript:
const char = '\u8952';
console.log(char); // Output: 襒
Java:
char c = '\u8952';
System.out.println(c); // Output: 襒
JSON:
{"text": "\u8952"} // Value: 襒
Python:
char = '\u8952'
print(char) # Output: 襒
Perl:
my $char = "\x{8952}";
print $char; # Output: 襒
PHP:
$char = "\x{8952}";
echo $char; // Output: 襒
Ruby:
char = "\u{8952}"
puts char # Output: 襒
Rust:
let c = '\u{8952}';
println!("{}", c); // Output: 襒
Go:
char := '\u8952'
fmt.Printf("%c\n", char) // Output: 襒
CSS:
/* CSS content property */
.element::before {
content: "\008952"; /* 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%92
MD5:
9afed1ce2ecbaaca8fde69c66d24d49b
SHA1:
7acf9329709d01d8c0b6e0aea36aab08dff9af5e
Base64:
6KWS