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