C:
char c = '\u7D42';
printf("%c\n", c); // Output: 終
JavaScript:
const char = '\u7D42';
console.log(char); // Output: 終
Java:
char c = '\u7D42';
System.out.println(c); // Output: 終
JSON:
{"text": "\u7D42"} // Value: 終
Python:
char = '\u7D42'
print(char) # Output: 終
Perl:
my $char = "\x{7D42}";
print $char; # Output: 終
PHP:
$char = "\x{7D42}";
echo $char; // Output: 終
Ruby:
char = "\u{7D42}"
puts char # Output: 終
Rust:
let c = '\u{7D42}';
println!("{}", c); // Output: 終
Go:
char := '\u7D42'
fmt.Printf("%c\n", char) // Output: 終
CSS:
/* CSS content property */
.element::before {
content: "\007D42"; /* 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%B5%82
MD5:
2fc1683be92dd9ff7fdd819e5548936d
SHA1:
339782a432384239b49d531b231fc3de5fd0fd3b
Base64:
57WC