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