C:
char c = '\u5285';
printf("%c\n", c); // Output: 劅
JavaScript:
const char = '\u5285';
console.log(char); // Output: 劅
Java:
char c = '\u5285';
System.out.println(c); // Output: 劅
JSON:
{"text": "\u5285"} // Value: 劅
Python:
char = '\u5285'
print(char) # Output: 劅
Perl:
my $char = "\x{5285}";
print $char; # Output: 劅
PHP:
$char = "\x{5285}";
echo $char; // Output: 劅
Ruby:
char = "\u{5285}"
puts char # Output: 劅
Rust:
let c = '\u{5285}';
println!("{}", c); // Output: 劅
Go:
char := '\u5285'
fmt.Printf("%c\n", char) // Output: 劅
CSS:
/* CSS content property */
.element::before {
content: "\005285"; /* 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%85
MD5:
771b5baf8e28be636f0685be4e21d156
SHA1:
6aedcfc5d3d064090c966b2f1d8cbcb12589b62c
Base64:
5YqF