C:
char c = '\u5258';
printf("%c\n", c); // Output: 剘
JavaScript:
const char = '\u5258';
console.log(char); // Output: 剘
Java:
char c = '\u5258';
System.out.println(c); // Output: 剘
JSON:
{"text": "\u5258"} // Value: 剘
Python:
char = '\u5258'
print(char) # Output: 剘
Perl:
my $char = "\x{5258}";
print $char; # Output: 剘
PHP:
$char = "\x{5258}";
echo $char; // Output: 剘
Ruby:
char = "\u{5258}"
puts char # Output: 剘
Rust:
let c = '\u{5258}';
println!("{}", c); // Output: 剘
Go:
char := '\u5258'
fmt.Printf("%c\n", char) // Output: 剘
CSS:
/* CSS content property */
.element::before {
content: "\005258"; /* 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%98
MD5:
0f4cd4214eacee429c7550f560c92dc1
SHA1:
bf985661f0e86cef9b4ff9e94b957c45da48a588
Base64:
5YmY