C:
char c = '\u7690';
printf("%c\n", c); // Output: 皐
JavaScript:
const char = '\u7690';
console.log(char); // Output: 皐
Java:
char c = '\u7690';
System.out.println(c); // Output: 皐
JSON:
{"text": "\u7690"} // Value: 皐
Python:
char = '\u7690'
print(char) # Output: 皐
Perl:
my $char = "\x{7690}";
print $char; # Output: 皐
PHP:
$char = "\x{7690}";
echo $char; // Output: 皐
Ruby:
char = "\u{7690}"
puts char # Output: 皐
Rust:
let c = '\u{7690}';
println!("{}", c); // Output: 皐
Go:
char := '\u7690'
fmt.Printf("%c\n", char) // Output: 皐
CSS:
/* CSS content property */
.element::before {
content: "\007690"; /* 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%9A%90
MD5:
897720cef68f433ddf31257983282779
SHA1:
15e17939a269246ce1ca8443bab43f9898113693
Base64:
55qQ