C:
char c = '\u7DF4';
printf("%c\n", c); // Output: 練
JavaScript:
const char = '\u7DF4';
console.log(char); // Output: 練
Java:
char c = '\u7DF4';
System.out.println(c); // Output: 練
JSON:
{"text": "\u7DF4"} // Value: 練
Python:
char = '\u7DF4'
print(char) # Output: 練
Perl:
my $char = "\x{7DF4}";
print $char; # Output: 練
PHP:
$char = "\x{7DF4}";
echo $char; // Output: 練
Ruby:
char = "\u{7DF4}"
puts char # Output: 練
Rust:
let c = '\u{7DF4}';
println!("{}", c); // Output: 練
Go:
char := '\u7DF4'
fmt.Printf("%c\n", char) // Output: 練
CSS:
/* CSS content property */
.element::before {
content: "\007DF4"; /* 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%B7%B4
MD5:
6c03e62054e950c31c960a63140cfab7
SHA1:
e409f96ac106b65f8be454c6fbe4c1c85eed9cfd
Base64:
57e0