C:
char c = '\u8DDE';
printf("%c\n", c); // Output: 跞
JavaScript:
const char = '\u8DDE';
console.log(char); // Output: 跞
Java:
char c = '\u8DDE';
System.out.println(c); // Output: 跞
JSON:
{"text": "\u8DDE"} // Value: 跞
Python:
char = '\u8DDE'
print(char) # Output: 跞
Perl:
my $char = "\x{8DDE}";
print $char; # Output: 跞
PHP:
$char = "\x{8DDE}";
echo $char; // Output: 跞
Ruby:
char = "\u{8DDE}"
puts char # Output: 跞
Rust:
let c = '\u{8DDE}';
println!("{}", c); // Output: 跞
Go:
char := '\u8DDE'
fmt.Printf("%c\n", char) // Output: 跞
CSS:
/* CSS content property */
.element::before {
content: "\008DDE"; /* 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%9E
MD5:
d74d89ccfd07e5d199e25c5531f79c01
SHA1:
445e861774510c969491a1ee9a689e76c1f2f22e
Base64:
6Lee