C:
char c = '\u5150';
printf("%c\n", c); // Output: 児
JavaScript:
const char = '\u5150';
console.log(char); // Output: 児
Java:
char c = '\u5150';
System.out.println(c); // Output: 児
JSON:
{"text": "\u5150"} // Value: 児
Python:
char = '\u5150'
print(char) # Output: 児
Perl:
my $char = "\x{5150}";
print $char; # Output: 児
PHP:
$char = "\x{5150}";
echo $char; // Output: 児
Ruby:
char = "\u{5150}"
puts char # Output: 児
Rust:
let c = '\u{5150}';
println!("{}", c); // Output: 児
Go:
char := '\u5150'
fmt.Printf("%c\n", char) // Output: 児
CSS:
/* CSS content property */
.element::before {
content: "\005150"; /* 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%85%90
MD5:
ebf88a3c182c9f11bdf383699209aac6
SHA1:
aa0b762983d48f3eaa22b1d69578858e79b915a9
Base64:
5YWQ