C:
char c = '\u5510';
printf("%c\n", c); // Output: 唐
JavaScript:
const char = '\u5510';
console.log(char); // Output: 唐
Java:
char c = '\u5510';
System.out.println(c); // Output: 唐
JSON:
{"text": "\u5510"} // Value: 唐
Python:
char = '\u5510'
print(char) # Output: 唐
Perl:
my $char = "\x{5510}";
print $char; # Output: 唐
PHP:
$char = "\x{5510}";
echo $char; // Output: 唐
Ruby:
char = "\u{5510}"
puts char # Output: 唐
Rust:
let c = '\u{5510}';
println!("{}", c); // Output: 唐
Go:
char := '\u5510'
fmt.Printf("%c\n", char) // Output: 唐
CSS:
/* CSS content property */
.element::before {
content: "\005510"; /* 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%90
MD5:
4cf43776bd222b7fc6cefe956e80893a
SHA1:
3e0a5b2455467a4a20a3533be3f83f820e7503e3
Base64:
5ZSQ