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