C:
char c = '\u5209';
printf("%c\n", c); // Output: 刉
JavaScript:
const char = '\u5209';
console.log(char); // Output: 刉
Java:
char c = '\u5209';
System.out.println(c); // Output: 刉
JSON:
{"text": "\u5209"} // Value: 刉
Python:
char = '\u5209'
print(char) # Output: 刉
Perl:
my $char = "\x{5209}";
print $char; # Output: 刉
PHP:
$char = "\x{5209}";
echo $char; // Output: 刉
Ruby:
char = "\u{5209}"
puts char # Output: 刉
Rust:
let c = '\u{5209}';
println!("{}", c); // Output: 刉
Go:
char := '\u5209'
fmt.Printf("%c\n", char) // Output: 刉
CSS:
/* CSS content property */
.element::before {
content: "\005209"; /* 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%88%89
MD5:
6e4c01013d21ce8c8f1d1e4540951f0a
SHA1:
db82f849aed1ccc6d0ca24f82c7ae879a18bfa32
Base64:
5YiJ