C:
char c = '\u5262';
printf("%c\n", c); // Output: 剢
JavaScript:
const char = '\u5262';
console.log(char); // Output: 剢
Java:
char c = '\u5262';
System.out.println(c); // Output: 剢
JSON:
{"text": "\u5262"} // Value: 剢
Python:
char = '\u5262'
print(char) # Output: 剢
Perl:
my $char = "\x{5262}";
print $char; # Output: 剢
PHP:
$char = "\x{5262}";
echo $char; // Output: 剢
Ruby:
char = "\u{5262}"
puts char # Output: 剢
Rust:
let c = '\u{5262}';
println!("{}", c); // Output: 剢
Go:
char := '\u5262'
fmt.Printf("%c\n", char) // Output: 剢
CSS:
/* CSS content property */
.element::before {
content: "\005262"; /* 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%A2
MD5:
e602ebadf637ae499d4c8a6f79dd86ba
SHA1:
28576cecff221e1a21759e4d9f7dcb5637317cea
Base64:
5Ymi