C:
char c = '\u5267';
printf("%c\n", c); // Output: 剧
JavaScript:
const char = '\u5267';
console.log(char); // Output: 剧
Java:
char c = '\u5267';
System.out.println(c); // Output: 剧
JSON:
{"text": "\u5267"} // Value: 剧
Python:
char = '\u5267'
print(char) # Output: 剧
Perl:
my $char = "\x{5267}";
print $char; # Output: 剧
PHP:
$char = "\x{5267}";
echo $char; // Output: 剧
Ruby:
char = "\u{5267}"
puts char # Output: 剧
Rust:
let c = '\u{5267}';
println!("{}", c); // Output: 剧
Go:
char := '\u5267'
fmt.Printf("%c\n", char) // Output: 剧
CSS:
/* CSS content property */
.element::before {
content: "\005267"; /* 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%A7
MD5:
78b2c4f6a405be2e9bf26d97055d4660
SHA1:
24caf3b55064894d0c1510d69857bff6f15446e9
Base64:
5Ymn