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