C:
char c = '\u5506';
printf("%c\n", c); // Output: 唆
JavaScript:
const char = '\u5506';
console.log(char); // Output: 唆
Java:
char c = '\u5506';
System.out.println(c); // Output: 唆
JSON:
{"text": "\u5506"} // Value: 唆
Python:
char = '\u5506'
print(char) # Output: 唆
Perl:
my $char = "\x{5506}";
print $char; # Output: 唆
PHP:
$char = "\x{5506}";
echo $char; // Output: 唆
Ruby:
char = "\u{5506}"
puts char # Output: 唆
Rust:
let c = '\u{5506}';
println!("{}", c); // Output: 唆
Go:
char := '\u5506'
fmt.Printf("%c\n", char) // Output: 唆
CSS:
/* CSS content property */
.element::before {
content: "\005506"; /* 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%86
MD5:
7f6ed4fb4e97fe7284b04f8fdf393deb
SHA1:
3522674cab4aa48301d362f99d443cd5fb401597
Base64:
5ZSG