C:
char c = '\u6795';
printf("%c\n", c); // Output: 枕
JavaScript:
const char = '\u6795';
console.log(char); // Output: 枕
Java:
char c = '\u6795';
System.out.println(c); // Output: 枕
JSON:
{"text": "\u6795"} // Value: 枕
Python:
char = '\u6795'
print(char) # Output: 枕
Perl:
my $char = "\x{6795}";
print $char; # Output: 枕
PHP:
$char = "\x{6795}";
echo $char; // Output: 枕
Ruby:
char = "\u{6795}"
puts char # Output: 枕
Rust:
let c = '\u{6795}';
println!("{}", c); // Output: 枕
Go:
char := '\u6795'
fmt.Printf("%c\n", char) // Output: 枕
CSS:
/* CSS content property */
.element::before {
content: "\006795"; /* 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=%E6%9E%95
MD5:
1a483e2f73c1c722cf9a2efa0d22ca34
SHA1:
66f7867eb2656033fa1b42fbc362c348f8c85f3b
Base64:
5p6V