C:
char c = '\u6901';
printf("%c\n", c); // Output: 椁
JavaScript:
const char = '\u6901';
console.log(char); // Output: 椁
Java:
char c = '\u6901';
System.out.println(c); // Output: 椁
JSON:
{"text": "\u6901"} // Value: 椁
Python:
char = '\u6901'
print(char) # Output: 椁
Perl:
my $char = "\x{6901}";
print $char; # Output: 椁
PHP:
$char = "\x{6901}";
echo $char; // Output: 椁
Ruby:
char = "\u{6901}"
puts char # Output: 椁
Rust:
let c = '\u{6901}';
println!("{}", c); // Output: 椁
Go:
char := '\u6901'
fmt.Printf("%c\n", char) // Output: 椁
CSS:
/* CSS content property */
.element::before {
content: "\006901"; /* 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%A4%81
MD5:
9ea1f99e3eec20af85a045720157b239
SHA1:
d6489f278cfdd50a861bb840545f4ad2f9d3a39d
Base64:
5qSB