C:
char c = '\u5291';
printf("%c\n", c); // Output: 劑
JavaScript:
const char = '\u5291';
console.log(char); // Output: 劑
Java:
char c = '\u5291';
System.out.println(c); // Output: 劑
JSON:
{"text": "\u5291"} // Value: 劑
Python:
char = '\u5291'
print(char) # Output: 劑
Perl:
my $char = "\x{5291}";
print $char; # Output: 劑
PHP:
$char = "\x{5291}";
echo $char; // Output: 劑
Ruby:
char = "\u{5291}"
puts char # Output: 劑
Rust:
let c = '\u{5291}';
println!("{}", c); // Output: 劑
Go:
char := '\u5291'
fmt.Printf("%c\n", char) // Output: 劑
CSS:
/* CSS content property */
.element::before {
content: "\005291"; /* 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%8A%91
MD5:
a268448fa45b9a54fb376536be2c6a72
SHA1:
6ba5c708b0345e786f4db250ab8f853f2d3c9e41
Base64:
5YqR