C:
char c = '\u8DC8';
printf("%c\n", c); // Output: 跈
JavaScript:
const char = '\u8DC8';
console.log(char); // Output: 跈
Java:
char c = '\u8DC8';
System.out.println(c); // Output: 跈
JSON:
{"text": "\u8DC8"} // Value: 跈
Python:
char = '\u8DC8'
print(char) # Output: 跈
Perl:
my $char = "\x{8DC8}";
print $char; # Output: 跈
PHP:
$char = "\x{8DC8}";
echo $char; // Output: 跈
Ruby:
char = "\u{8DC8}"
puts char # Output: 跈
Rust:
let c = '\u{8DC8}';
println!("{}", c); // Output: 跈
Go:
char := '\u8DC8'
fmt.Printf("%c\n", char) // Output: 跈
CSS:
/* CSS content property */
.element::before {
content: "\008DC8"; /* 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%B7%88
MD5:
8d497df47e194869836e8eb4cad0b9c9
SHA1:
3750223607b32d5ccc8db0bd2194989835168f23
Base64:
6LeI