C:
char c = '\u5606';
printf("%c\n", c); // Output: 嘆
JavaScript:
const char = '\u5606';
console.log(char); // Output: 嘆
Java:
char c = '\u5606';
System.out.println(c); // Output: 嘆
JSON:
{"text": "\u5606"} // Value: 嘆
Python:
char = '\u5606'
print(char) # Output: 嘆
Perl:
my $char = "\x{5606}";
print $char; # Output: 嘆
PHP:
$char = "\x{5606}";
echo $char; // Output: 嘆
Ruby:
char = "\u{5606}"
puts char # Output: 嘆
Rust:
let c = '\u{5606}';
println!("{}", c); // Output: 嘆
Go:
char := '\u5606'
fmt.Printf("%c\n", char) // Output: 嘆
CSS:
/* CSS content property */
.element::before {
content: "\005606"; /* 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%98%86
MD5:
afc7b383df0b7fa22aecc77b7d8a7653
SHA1:
208f6c7c406eb627c6263ebcdf7b2ec1caacff5b
Base64:
5ZiG