C:
char c = '\u6754';
printf("%c\n", c); // Output: 杔
JavaScript:
const char = '\u6754';
console.log(char); // Output: 杔
Java:
char c = '\u6754';
System.out.println(c); // Output: 杔
JSON:
{"text": "\u6754"} // Value: 杔
Python:
char = '\u6754'
print(char) # Output: 杔
Perl:
my $char = "\x{6754}";
print $char; # Output: 杔
PHP:
$char = "\x{6754}";
echo $char; // Output: 杔
Ruby:
char = "\u{6754}"
puts char # Output: 杔
Rust:
let c = '\u{6754}';
println!("{}", c); // Output: 杔
Go:
char := '\u6754'
fmt.Printf("%c\n", char) // Output: 杔
CSS:
/* CSS content property */
.element::before {
content: "\006754"; /* 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%94
MD5:
a24e5123e7575349929026fba6960716
SHA1:
499fc1fc3e02a1923dc576d412d9392049dbed14
Base64:
5p2U