C:
char c = '\u7EC8';
printf("%c\n", c); // Output: 终
JavaScript:
const char = '\u7EC8';
console.log(char); // Output: 终
Java:
char c = '\u7EC8';
System.out.println(c); // Output: 终
JSON:
{"text": "\u7EC8"} // Value: 终
Python:
char = '\u7EC8'
print(char) # Output: 终
Perl:
my $char = "\x{7EC8}";
print $char; # Output: 终
PHP:
$char = "\x{7EC8}";
echo $char; // Output: 终
Ruby:
char = "\u{7EC8}"
puts char # Output: 终
Rust:
let c = '\u{7EC8}';
println!("{}", c); // Output: 终
Go:
char := '\u7EC8'
fmt.Printf("%c\n", char) // Output: 终
CSS:
/* CSS content property */
.element::before {
content: "\007EC8"; /* 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%88
MD5:
3fff5e12bba06737058f6da5fb02ec65
SHA1:
79b639939788acd3e1a88b6afb96cee33aed61b7
Base64:
57uI