C:
char c = '\u900D';
printf("%c\n", c); // Output: 逍
JavaScript:
const char = '\u900D';
console.log(char); // Output: 逍
Java:
char c = '\u900D';
System.out.println(c); // Output: 逍
JSON:
{"text": "\u900D"} // Value: 逍
Python:
char = '\u900D'
print(char) # Output: 逍
Perl:
my $char = "\x{900D}";
print $char; # Output: 逍
PHP:
$char = "\x{900D}";
echo $char; // Output: 逍
Ruby:
char = "\u{900D}"
puts char # Output: 逍
Rust:
let c = '\u{900D}';
println!("{}", c); // Output: 逍
Go:
char := '\u900D'
fmt.Printf("%c\n", char) // Output: 逍
CSS:
/* CSS content property */
.element::before {
content: "\00900D"; /* 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=%E9%80%8D
MD5:
9e9893bf67c8f771dd758d853d3de234
SHA1:
1f2f0524fba912f050a14cdfaa48ffdb6cccf1c5
Base64:
6YCN