C:
char c = '\u7AE4';
printf("%c\n", c); // Output: 竤
JavaScript:
const char = '\u7AE4';
console.log(char); // Output: 竤
Java:
char c = '\u7AE4';
System.out.println(c); // Output: 竤
JSON:
{"text": "\u7AE4"} // Value: 竤
Python:
char = '\u7AE4'
print(char) # Output: 竤
Perl:
my $char = "\x{7AE4}";
print $char; # Output: 竤
PHP:
$char = "\x{7AE4}";
echo $char; // Output: 竤
Ruby:
char = "\u{7AE4}"
puts char # Output: 竤
Rust:
let c = '\u{7AE4}';
println!("{}", c); // Output: 竤
Go:
char := '\u7AE4'
fmt.Printf("%c\n", char) // Output: 竤
CSS:
/* CSS content property */
.element::before {
content: "\007AE4"; /* 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%AB%A4
MD5:
3cfdbfe8ac141a3037aa11869b5f3441
SHA1:
b5e4144d77cee228381dfed3cb1f78b588e12779
Base64:
56uk