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