C:
char c = '\u5269';
printf("%c\n", c); // Output: 剩
JavaScript:
const char = '\u5269';
console.log(char); // Output: 剩
Java:
char c = '\u5269';
System.out.println(c); // Output: 剩
JSON:
{"text": "\u5269"} // Value: 剩
Python:
char = '\u5269'
print(char) # Output: 剩
Perl:
my $char = "\x{5269}";
print $char; # Output: 剩
PHP:
$char = "\x{5269}";
echo $char; // Output: 剩
Ruby:
char = "\u{5269}"
puts char # Output: 剩
Rust:
let c = '\u{5269}';
println!("{}", c); // Output: 剩
Go:
char := '\u5269'
fmt.Printf("%c\n", char) // Output: 剩
CSS:
/* CSS content property */
.element::before {
content: "\005269"; /* 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%A9
MD5:
c1995c06b99a0c0066020b6c3f28e840
SHA1:
5db062d8eeac5072641b46c82cc6cc0f5b375e4a
Base64:
5Ymp