C:
char c = '\u5549';
printf("%c\n", c); // Output: 啉
JavaScript:
const char = '\u5549';
console.log(char); // Output: 啉
Java:
char c = '\u5549';
System.out.println(c); // Output: 啉
JSON:
{"text": "\u5549"} // Value: 啉
Python:
char = '\u5549'
print(char) # Output: 啉
Perl:
my $char = "\x{5549}";
print $char; # Output: 啉
PHP:
$char = "\x{5549}";
echo $char; // Output: 啉
Ruby:
char = "\u{5549}"
puts char # Output: 啉
Rust:
let c = '\u{5549}';
println!("{}", c); // Output: 啉
Go:
char := '\u5549'
fmt.Printf("%c\n", char) // Output: 啉
CSS:
/* CSS content property */
.element::before {
content: "\005549"; /* 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%95%89
MD5:
e614f0341e96830c51060a456fee86ec
SHA1:
560c8b7a1bccc378cdd4c6339401071fc81adea4
Base64:
5ZWJ