C:
char c = '\u6546';
printf("%c\n", c); // Output: 敆
JavaScript:
const char = '\u6546';
console.log(char); // Output: 敆
Java:
char c = '\u6546';
System.out.println(c); // Output: 敆
JSON:
{"text": "\u6546"} // Value: 敆
Python:
char = '\u6546'
print(char) # Output: 敆
Perl:
my $char = "\x{6546}";
print $char; # Output: 敆
PHP:
$char = "\x{6546}";
echo $char; // Output: 敆
Ruby:
char = "\u{6546}"
puts char # Output: 敆
Rust:
let c = '\u{6546}';
println!("{}", c); // Output: 敆
Go:
char := '\u6546'
fmt.Printf("%c\n", char) // Output: 敆
CSS:
/* CSS content property */
.element::before {
content: "\006546"; /* 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%86
MD5:
72baa17ba404828c92a887c7e6e16b3d
SHA1:
2c1cc189eb27222d256bddd65da810c8f09e4a3f
Base64:
5pWG