C:
char c = '\u5B43';
printf("%c\n", c); // Output: 孃
JavaScript:
const char = '\u5B43';
console.log(char); // Output: 孃
Java:
char c = '\u5B43';
System.out.println(c); // Output: 孃
JSON:
{"text": "\u5B43"} // Value: 孃
Python:
char = '\u5B43'
print(char) # Output: 孃
Perl:
my $char = "\x{5B43}";
print $char; # Output: 孃
PHP:
$char = "\x{5B43}";
echo $char; // Output: 孃
Ruby:
char = "\u{5B43}"
puts char # Output: 孃
Rust:
let c = '\u{5B43}';
println!("{}", c); // Output: 孃
Go:
char := '\u5B43'
fmt.Printf("%c\n", char) // Output: 孃
CSS:
/* CSS content property */
.element::before {
content: "\005B43"; /* 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%AD%83
MD5:
40af848df7daf5253cb203774fd56757
SHA1:
e858d3cc74dbfd7e423487c175db4766bee9f2f5
Base64:
5a2D