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