C:
char c = '\u5513';
printf("%c\n", c); // Output: 唓
JavaScript:
const char = '\u5513';
console.log(char); // Output: 唓
Java:
char c = '\u5513';
System.out.println(c); // Output: 唓
JSON:
{"text": "\u5513"} // Value: 唓
Python:
char = '\u5513'
print(char) # Output: 唓
Perl:
my $char = "\x{5513}";
print $char; # Output: 唓
PHP:
$char = "\x{5513}";
echo $char; // Output: 唓
Ruby:
char = "\u{5513}"
puts char # Output: 唓
Rust:
let c = '\u{5513}';
println!("{}", c); // Output: 唓
Go:
char := '\u5513'
fmt.Printf("%c\n", char) // Output: 唓
CSS:
/* CSS content property */
.element::before {
content: "\005513"; /* 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%93
MD5:
bf1ef55e9e8698dee644b18f1249bd0b
SHA1:
1b08b344bfede1e116d59b5695ddcdb383aad5f5
Base64:
5ZST