C:
char c = '\u6542';
printf("%c\n", c); // Output: 敂
JavaScript:
const char = '\u6542';
console.log(char); // Output: 敂
Java:
char c = '\u6542';
System.out.println(c); // Output: 敂
JSON:
{"text": "\u6542"} // Value: 敂
Python:
char = '\u6542'
print(char) # Output: 敂
Perl:
my $char = "\x{6542}";
print $char; # Output: 敂
PHP:
$char = "\x{6542}";
echo $char; // Output: 敂
Ruby:
char = "\u{6542}"
puts char # Output: 敂
Rust:
let c = '\u{6542}';
println!("{}", c); // Output: 敂
Go:
char := '\u6542'
fmt.Printf("%c\n", char) // Output: 敂
CSS:
/* CSS content property */
.element::before {
content: "\006542"; /* 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%82
MD5:
2fe988863686d239c6eb7e81136a20e1
SHA1:
9f650d42df2ec3180ae4cbce1d5baaf7e20d94b4
Base64:
5pWC