C:
char c = '\u901B';
printf("%c\n", c); // Output: 逛
JavaScript:
const char = '\u901B';
console.log(char); // Output: 逛
Java:
char c = '\u901B';
System.out.println(c); // Output: 逛
JSON:
{"text": "\u901B"} // Value: 逛
Python:
char = '\u901B'
print(char) # Output: 逛
Perl:
my $char = "\x{901B}";
print $char; # Output: 逛
PHP:
$char = "\x{901B}";
echo $char; // Output: 逛
Ruby:
char = "\u{901B}"
puts char # Output: 逛
Rust:
let c = '\u{901B}';
println!("{}", c); // Output: 逛
Go:
char := '\u901B'
fmt.Printf("%c\n", char) // Output: 逛
CSS:
/* CSS content property */
.element::before {
content: "\00901B"; /* 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%9B
MD5:
cf883cac7883e9d14c3cc5ede2a67056
SHA1:
4cc029d5964b88b128246fac13ee30ae56f23375
Base64:
6YCb