C:
char c = '\u5230';
printf("%c\n", c); // Output: 到
JavaScript:
const char = '\u5230';
console.log(char); // Output: 到
Java:
char c = '\u5230';
System.out.println(c); // Output: 到
JSON:
{"text": "\u5230"} // Value: 到
Python:
char = '\u5230'
print(char) # Output: 到
Perl:
my $char = "\x{5230}";
print $char; # Output: 到
PHP:
$char = "\x{5230}";
echo $char; // Output: 到
Ruby:
char = "\u{5230}"
puts char # Output: 到
Rust:
let c = '\u{5230}';
println!("{}", c); // Output: 到
Go:
char := '\u5230'
fmt.Printf("%c\n", char) // Output: 到
CSS:
/* CSS content property */
.element::before {
content: "\005230"; /* 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=%E5%88%B0
MD5:
d716f1e8a1f1ba9fb379749856f8551b
SHA1:
792bbe6e08f5c43c0c78a7793523f994c4d532ed
Base64:
5Yiw