C:
char c = '\u6540';
printf("%c\n", c); // Output: 敀
JavaScript:
const char = '\u6540';
console.log(char); // Output: 敀
Java:
char c = '\u6540';
System.out.println(c); // Output: 敀
JSON:
{"text": "\u6540"} // Value: 敀
Python:
char = '\u6540'
print(char) # Output: 敀
Perl:
my $char = "\x{6540}";
print $char; # Output: 敀
PHP:
$char = "\x{6540}";
echo $char; // Output: 敀
Ruby:
char = "\u{6540}"
puts char # Output: 敀
Rust:
let c = '\u{6540}';
println!("{}", c); // Output: 敀
Go:
char := '\u6540'
fmt.Printf("%c\n", char) // Output: 敀
CSS:
/* CSS content property */
.element::before {
content: "\006540"; /* 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%80
MD5:
5e1843388ae1a27c994911303dba7ad6
SHA1:
1cb1c830231ed11c631e4620235ab1e7237263c0
Base64:
5pWA