C:
char c = '\u5508';
printf("%c\n", c); // Output: 唈
JavaScript:
const char = '\u5508';
console.log(char); // Output: 唈
Java:
char c = '\u5508';
System.out.println(c); // Output: 唈
JSON:
{"text": "\u5508"} // Value: 唈
Python:
char = '\u5508'
print(char) # Output: 唈
Perl:
my $char = "\x{5508}";
print $char; # Output: 唈
PHP:
$char = "\x{5508}";
echo $char; // Output: 唈
Ruby:
char = "\u{5508}"
puts char # Output: 唈
Rust:
let c = '\u{5508}';
println!("{}", c); // Output: 唈
Go:
char := '\u5508'
fmt.Printf("%c\n", char) // Output: 唈
CSS:
/* CSS content property */
.element::before {
content: "\005508"; /* 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%88
MD5:
066a1e56b0687b071fa519107c424df0
SHA1:
382eb2c34ebc1f26318001f3b8d65ca292203a98
Base64:
5ZSI