C:
char c = '\u5615';
printf("%c\n", c); // Output: 嘕
JavaScript:
const char = '\u5615';
console.log(char); // Output: 嘕
Java:
char c = '\u5615';
System.out.println(c); // Output: 嘕
JSON:
{"text": "\u5615"} // Value: 嘕
Python:
char = '\u5615'
print(char) # Output: 嘕
Perl:
my $char = "\x{5615}";
print $char; # Output: 嘕
PHP:
$char = "\x{5615}";
echo $char; // Output: 嘕
Ruby:
char = "\u{5615}"
puts char # Output: 嘕
Rust:
let c = '\u{5615}';
println!("{}", c); // Output: 嘕
Go:
char := '\u5615'
fmt.Printf("%c\n", char) // Output: 嘕
CSS:
/* CSS content property */
.element::before {
content: "\005615"; /* 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%95
MD5:
2b18ad2a390d582ce802ca273fdcc462
SHA1:
f0de43f4f1afaf0645a4544d57defac8631fae97
Base64:
5ZiV