C:
char c = '\u5594';
printf("%c\n", c); // Output: 喔
JavaScript:
const char = '\u5594';
console.log(char); // Output: 喔
Java:
char c = '\u5594';
System.out.println(c); // Output: 喔
JSON:
{"text": "\u5594"} // Value: 喔
Python:
char = '\u5594'
print(char) # Output: 喔
Perl:
my $char = "\x{5594}";
print $char; # Output: 喔
PHP:
$char = "\x{5594}";
echo $char; // Output: 喔
Ruby:
char = "\u{5594}"
puts char # Output: 喔
Rust:
let c = '\u{5594}';
println!("{}", c); // Output: 喔
Go:
char := '\u5594'
fmt.Printf("%c\n", char) // Output: 喔
CSS:
/* CSS content property */
.element::before {
content: "\005594"; /* 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%96%94
MD5:
39b413579e660545dfeea4aa105093e9
SHA1:
e6e02410effe6c11523cb8cf2635c14512ca41b3
Base64:
5ZaU