C:
char c = '\u5261';
printf("%c\n", c); // Output: 剡
JavaScript:
const char = '\u5261';
console.log(char); // Output: 剡
Java:
char c = '\u5261';
System.out.println(c); // Output: 剡
JSON:
{"text": "\u5261"} // Value: 剡
Python:
char = '\u5261'
print(char) # Output: 剡
Perl:
my $char = "\x{5261}";
print $char; # Output: 剡
PHP:
$char = "\x{5261}";
echo $char; // Output: 剡
Ruby:
char = "\u{5261}"
puts char # Output: 剡
Rust:
let c = '\u{5261}';
println!("{}", c); // Output: 剡
Go:
char := '\u5261'
fmt.Printf("%c\n", char) // Output: 剡
CSS:
/* CSS content property */
.element::before {
content: "\005261"; /* 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=%E5%89%A1
MD5:
7ba53279c480ce5ef5b6a82bc38673c1
SHA1:
31ab97e7c402e96c27f92114d124f4827c81f4ab
Base64:
5Ymh