C:
char c = '\u8E5A';
printf("%c\n", c); // Output: 蹚
JavaScript:
const char = '\u8E5A';
console.log(char); // Output: 蹚
Java:
char c = '\u8E5A';
System.out.println(c); // Output: 蹚
JSON:
{"text": "\u8E5A"} // Value: 蹚
Python:
char = '\u8E5A'
print(char) # Output: 蹚
Perl:
my $char = "\x{8E5A}";
print $char; # Output: 蹚
PHP:
$char = "\x{8E5A}";
echo $char; // Output: 蹚
Ruby:
char = "\u{8E5A}"
puts char # Output: 蹚
Rust:
let c = '\u{8E5A}';
println!("{}", c); // Output: 蹚
Go:
char := '\u8E5A'
fmt.Printf("%c\n", char) // Output: 蹚
CSS:
/* CSS content property */
.element::before {
content: "\008E5A"; /* 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=%E8%B9%9A
MD5:
02ad9def438f0d6f8d7c2623f986795d
SHA1:
0b96c1363c3bce797176c20840092ba0dec2becf
Base64:
6Lma