C:
char c = '\u9026';
printf("%c\n", c); // Output: 逦
JavaScript:
const char = '\u9026';
console.log(char); // Output: 逦
Java:
char c = '\u9026';
System.out.println(c); // Output: 逦
JSON:
{"text": "\u9026"} // Value: 逦
Python:
char = '\u9026'
print(char) # Output: 逦
Perl:
my $char = "\x{9026}";
print $char; # Output: 逦
PHP:
$char = "\x{9026}";
echo $char; // Output: 逦
Ruby:
char = "\u{9026}"
puts char # Output: 逦
Rust:
let c = '\u{9026}';
println!("{}", c); // Output: 逦
Go:
char := '\u9026'
fmt.Printf("%c\n", char) // Output: 逦
CSS:
/* CSS content property */
.element::before {
content: "\009026"; /* 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%A6
MD5:
782dcf7a284ffa8432c4dac376eb6f31
SHA1:
e57742a633bf78df9019d7d870dc41b0c02cf212
Base64:
6YCm