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