C:
char c = '\u9645';
printf("%c\n", c); // Output: 际
JavaScript:
const char = '\u9645';
console.log(char); // Output: 际
Java:
char c = '\u9645';
System.out.println(c); // Output: 际
JSON:
{"text": "\u9645"} // Value: 际
Python:
char = '\u9645'
print(char) # Output: 际
Perl:
my $char = "\x{9645}";
print $char; # Output: 际
PHP:
$char = "\x{9645}";
echo $char; // Output: 际
Ruby:
char = "\u{9645}"
puts char # Output: 际
Rust:
let c = '\u{9645}';
println!("{}", c); // Output: 际
Go:
char := '\u9645'
fmt.Printf("%c\n", char) // Output: 际
CSS:
/* CSS content property */
.element::before {
content: "\009645"; /* 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=%E9%99%85
MD5:
e9fd8f2ed6d8be4238318b5b4181c14e
SHA1:
2e34088568bcdbc4b2720532a5ea6487f694e152
Base64:
6ZmF