C:
char c = '\u9003';
printf("%c\n", c); // Output: 逃
JavaScript:
const char = '\u9003';
console.log(char); // Output: 逃
Java:
char c = '\u9003';
System.out.println(c); // Output: 逃
JSON:
{"text": "\u9003"} // Value: 逃
Python:
char = '\u9003'
print(char) # Output: 逃
Perl:
my $char = "\x{9003}";
print $char; # Output: 逃
PHP:
$char = "\x{9003}";
echo $char; // Output: 逃
Ruby:
char = "\u{9003}"
puts char # Output: 逃
Rust:
let c = '\u{9003}';
println!("{}", c); // Output: 逃
Go:
char := '\u9003'
fmt.Printf("%c\n", char) // Output: 逃
CSS:
/* CSS content property */
.element::before {
content: "\009003"; /* 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%83
MD5:
5b208074ee7d11179e6eac27f06c9f28
SHA1:
d1f5d5fc330d4a985c6358e4f32c80955987a721
Base64:
6YCD