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