C:
char c = '\u5607';
printf("%c\n", c); // Output: 嘇
JavaScript:
const char = '\u5607';
console.log(char); // Output: 嘇
Java:
char c = '\u5607';
System.out.println(c); // Output: 嘇
JSON:
{"text": "\u5607"} // Value: 嘇
Python:
char = '\u5607'
print(char) # Output: 嘇
Perl:
my $char = "\x{5607}";
print $char; # Output: 嘇
PHP:
$char = "\x{5607}";
echo $char; // Output: 嘇
Ruby:
char = "\u{5607}"
puts char # Output: 嘇
Rust:
let c = '\u{5607}';
println!("{}", c); // Output: 嘇
Go:
char := '\u5607'
fmt.Printf("%c\n", char) // Output: 嘇
CSS:
/* CSS content property */
.element::before {
content: "\005607"; /* 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%87
MD5:
bb0c00e24197633cf919ced7e61f02fa
SHA1:
a47c3a9675b3b6e91cd0a19a768d72934f53fe76
Base64:
5ZiH