C:
char c = '\u5570';
printf("%c\n", c); // Output: 啰
JavaScript:
const char = '\u5570';
console.log(char); // Output: 啰
Java:
char c = '\u5570';
System.out.println(c); // Output: 啰
JSON:
{"text": "\u5570"} // Value: 啰
Python:
char = '\u5570'
print(char) # Output: 啰
Perl:
my $char = "\x{5570}";
print $char; # Output: 啰
PHP:
$char = "\x{5570}";
echo $char; // Output: 啰
Ruby:
char = "\u{5570}"
puts char # Output: 啰
Rust:
let c = '\u{5570}';
println!("{}", c); // Output: 啰
Go:
char := '\u5570'
fmt.Printf("%c\n", char) // Output: 啰
CSS:
/* CSS content property */
.element::before {
content: "\005570"; /* 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%B0
MD5:
3c976404f5c71b01ab4436368dc49d11
SHA1:
169ff9b43a6ff517ef8c387a7c51397fe3e1c1c5
Base64:
5ZWw