C:
char c = '\u6758';
printf("%c\n", c); // Output: 杘
JavaScript:
const char = '\u6758';
console.log(char); // Output: 杘
Java:
char c = '\u6758';
System.out.println(c); // Output: 杘
JSON:
{"text": "\u6758"} // Value: 杘
Python:
char = '\u6758'
print(char) # Output: 杘
Perl:
my $char = "\x{6758}";
print $char; # Output: 杘
PHP:
$char = "\x{6758}";
echo $char; // Output: 杘
Ruby:
char = "\u{6758}"
puts char # Output: 杘
Rust:
let c = '\u{6758}';
println!("{}", c); // Output: 杘
Go:
char := '\u6758'
fmt.Printf("%c\n", char) // Output: 杘
CSS:
/* CSS content property */
.element::before {
content: "\006758"; /* 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%98
MD5:
2fa40591bb8a1eff227ee8edbd159b29
SHA1:
69c0c45d7c8ccb40ee3c61fd6e75ec68ea7ff19e
Base64:
5p2Y