C:
char c = '\u5290';
printf("%c\n", c); // Output: 劐
JavaScript:
const char = '\u5290';
console.log(char); // Output: 劐
Java:
char c = '\u5290';
System.out.println(c); // Output: 劐
JSON:
{"text": "\u5290"} // Value: 劐
Python:
char = '\u5290'
print(char) # Output: 劐
Perl:
my $char = "\x{5290}";
print $char; # Output: 劐
PHP:
$char = "\x{5290}";
echo $char; // Output: 劐
Ruby:
char = "\u{5290}"
puts char # Output: 劐
Rust:
let c = '\u{5290}';
println!("{}", c); // Output: 劐
Go:
char := '\u5290'
fmt.Printf("%c\n", char) // Output: 劐
CSS:
/* CSS content property */
.element::before {
content: "\005290"; /* 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%90
MD5:
728229a1a5e9df45a3b6f7074806e4fd
SHA1:
4b28493fa9a0d9d6438897a7be579ca89fc96ce5
Base64:
5YqQ