C:
char c = '\u6547';
printf("%c\n", c); // Output: 敇
JavaScript:
const char = '\u6547';
console.log(char); // Output: 敇
Java:
char c = '\u6547';
System.out.println(c); // Output: 敇
JSON:
{"text": "\u6547"} // Value: 敇
Python:
char = '\u6547'
print(char) # Output: 敇
Perl:
my $char = "\x{6547}";
print $char; # Output: 敇
PHP:
$char = "\x{6547}";
echo $char; // Output: 敇
Ruby:
char = "\u{6547}"
puts char # Output: 敇
Rust:
let c = '\u{6547}';
println!("{}", c); // Output: 敇
Go:
char := '\u6547'
fmt.Printf("%c\n", char) // Output: 敇
CSS:
/* CSS content property */
.element::before {
content: "\006547"; /* 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%95%87
MD5:
6b826be5a0ffecc031304623a0098f48
SHA1:
2400d14e55c2510244e018e83f68f0ba23699d41
Base64:
5pWH