C:
char c = '\u9025';
printf("%c\n", c); // Output: 逥
JavaScript:
const char = '\u9025';
console.log(char); // Output: 逥
Java:
char c = '\u9025';
System.out.println(c); // Output: 逥
JSON:
{"text": "\u9025"} // Value: 逥
Python:
char = '\u9025'
print(char) # Output: 逥
Perl:
my $char = "\x{9025}";
print $char; # Output: 逥
PHP:
$char = "\x{9025}";
echo $char; // Output: 逥
Ruby:
char = "\u{9025}"
puts char # Output: 逥
Rust:
let c = '\u{9025}';
println!("{}", c); // Output: 逥
Go:
char := '\u9025'
fmt.Printf("%c\n", char) // Output: 逥
CSS:
/* CSS content property */
.element::before {
content: "\009025"; /* 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%80%A5
MD5:
70aef0cd061d1d22cefb0cb12e599a45
SHA1:
d6f622add82ced3a7b1bded1c82c3703dc933cf6
Base64:
6YCl