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