C:
char c = '\u6744';
printf("%c\n", c); // Output: 杄
JavaScript:
const char = '\u6744';
console.log(char); // Output: 杄
Java:
char c = '\u6744';
System.out.println(c); // Output: 杄
JSON:
{"text": "\u6744"} // Value: 杄
Python:
char = '\u6744'
print(char) # Output: 杄
Perl:
my $char = "\x{6744}";
print $char; # Output: 杄
PHP:
$char = "\x{6744}";
echo $char; // Output: 杄
Ruby:
char = "\u{6744}"
puts char # Output: 杄
Rust:
let c = '\u{6744}';
println!("{}", c); // Output: 杄
Go:
char := '\u6744'
fmt.Printf("%c\n", char) // Output: 杄
CSS:
/* CSS content property */
.element::before {
content: "\006744"; /* 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%84
MD5:
c55288ddacb9a1482b7864e56770356b
SHA1:
3a90f5d098939f6f290f49f23b6156813cd781bd
Base64:
5p2E