C:
char c = '\u5152';
printf("%c\n", c); // Output: 兒
JavaScript:
const char = '\u5152';
console.log(char); // Output: 兒
Java:
char c = '\u5152';
System.out.println(c); // Output: 兒
JSON:
{"text": "\u5152"} // Value: 兒
Python:
char = '\u5152'
print(char) # Output: 兒
Perl:
my $char = "\x{5152}";
print $char; # Output: 兒
PHP:
$char = "\x{5152}";
echo $char; // Output: 兒
Ruby:
char = "\u{5152}"
puts char # Output: 兒
Rust:
let c = '\u{5152}';
println!("{}", c); // Output: 兒
Go:
char := '\u5152'
fmt.Printf("%c\n", char) // Output: 兒
CSS:
/* CSS content property */
.element::before {
content: "\005152"; /* 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%92
MD5:
54c5d6db0de9e14c0054c585cd2e71b8
SHA1:
389d474afa85721559ef8d596f350bc251005dbc
Base64:
5YWS