C:
char c = '\u5571';
printf("%c\n", c); // Output: 啱
JavaScript:
const char = '\u5571';
console.log(char); // Output: 啱
Java:
char c = '\u5571';
System.out.println(c); // Output: 啱
JSON:
{"text": "\u5571"} // Value: 啱
Python:
char = '\u5571'
print(char) # Output: 啱
Perl:
my $char = "\x{5571}";
print $char; # Output: 啱
PHP:
$char = "\x{5571}";
echo $char; // Output: 啱
Ruby:
char = "\u{5571}"
puts char # Output: 啱
Rust:
let c = '\u{5571}';
println!("{}", c); // Output: 啱
Go:
char := '\u5571'
fmt.Printf("%c\n", char) // Output: 啱
CSS:
/* CSS content property */
.element::before {
content: "\005571"; /* 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%B1
MD5:
01d51c4817908bcc112b4428c05a6ad9
SHA1:
173ac322f52e72d9542ae2303c217e541b4df49e
Base64:
5ZWx