C:
char c = '\u7EC3';
printf("%c\n", c); // Output: 练
JavaScript:
const char = '\u7EC3';
console.log(char); // Output: 练
Java:
char c = '\u7EC3';
System.out.println(c); // Output: 练
JSON:
{"text": "\u7EC3"} // Value: 练
Python:
char = '\u7EC3'
print(char) # Output: 练
Perl:
my $char = "\x{7EC3}";
print $char; # Output: 练
PHP:
$char = "\x{7EC3}";
echo $char; // Output: 练
Ruby:
char = "\u{7EC3}"
puts char # Output: 练
Rust:
let c = '\u{7EC3}';
println!("{}", c); // Output: 练
Go:
char := '\u7EC3'
fmt.Printf("%c\n", char) // Output: 练
CSS:
/* CSS content property */
.element::before {
content: "\007EC3"; /* 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=%E7%BB%83
MD5:
8815cb52369c35c4b41fd4d75eb24bc4
SHA1:
70bcf691e18fe2efe1320197910fa74139c2eccb
Base64:
57uD