C:
char c = '\u9021';
printf("%c\n", c); // Output: 逡
JavaScript:
const char = '\u9021';
console.log(char); // Output: 逡
Java:
char c = '\u9021';
System.out.println(c); // Output: 逡
JSON:
{"text": "\u9021"} // Value: 逡
Python:
char = '\u9021'
print(char) # Output: 逡
Perl:
my $char = "\x{9021}";
print $char; # Output: 逡
PHP:
$char = "\x{9021}";
echo $char; // Output: 逡
Ruby:
char = "\u{9021}"
puts char # Output: 逡
Rust:
let c = '\u{9021}';
println!("{}", c); // Output: 逡
Go:
char := '\u9021'
fmt.Printf("%c\n", char) // Output: 逡
CSS:
/* CSS content property */
.element::before {
content: "\009021"; /* 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%A1
MD5:
7a2185839625c7cfcabab6ac1433c18d
SHA1:
376c6c6326939931accbc8768e670ccf30df65eb
Base64:
6YCh