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