C:
char c = '\u5512';
printf("%c\n", c); // Output: 唒
JavaScript:
const char = '\u5512';
console.log(char); // Output: 唒
Java:
char c = '\u5512';
System.out.println(c); // Output: 唒
JSON:
{"text": "\u5512"} // Value: 唒
Python:
char = '\u5512'
print(char) # Output: 唒
Perl:
my $char = "\x{5512}";
print $char; # Output: 唒
PHP:
$char = "\x{5512}";
echo $char; // Output: 唒
Ruby:
char = "\u{5512}"
puts char # Output: 唒
Rust:
let c = '\u{5512}';
println!("{}", c); // Output: 唒
Go:
char := '\u5512'
fmt.Printf("%c\n", char) // Output: 唒
CSS:
/* CSS content property */
.element::before {
content: "\005512"; /* 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%94%92
MD5:
95b71fc55f129894d808e2a2649f5a5a
SHA1:
4b2890d3f2d8ec951aff281bce051e0bb383e756
Base64:
5ZSS