C:
char c = '\u5A1B';
printf("%c\n", c); // Output: 娛
JavaScript:
const char = '\u5A1B';
console.log(char); // Output: 娛
Java:
char c = '\u5A1B';
System.out.println(c); // Output: 娛
JSON:
{"text": "\u5A1B"} // Value: 娛
Python:
char = '\u5A1B'
print(char) # Output: 娛
Perl:
my $char = "\x{5A1B}";
print $char; # Output: 娛
PHP:
$char = "\x{5A1B}";
echo $char; // Output: 娛
Ruby:
char = "\u{5A1B}"
puts char # Output: 娛
Rust:
let c = '\u{5A1B}';
println!("{}", c); // Output: 娛
Go:
char := '\u5A1B'
fmt.Printf("%c\n", char) // Output: 娛
CSS:
/* CSS content property */
.element::before {
content: "\005A1B"; /* 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%A8%9B
MD5:
c3699ca116e408525ddf287fce4d6547
SHA1:
f14034ec1c91e765131ae9f60e598c11447429a2
Base64:
5aib