C:
char c = '\u9A5B';
printf("%c\n", c); // Output: 驛
JavaScript:
const char = '\u9A5B';
console.log(char); // Output: 驛
Java:
char c = '\u9A5B';
System.out.println(c); // Output: 驛
JSON:
{"text": "\u9A5B"} // Value: 驛
Python:
char = '\u9A5B'
print(char) # Output: 驛
Perl:
my $char = "\x{9A5B}";
print $char; # Output: 驛
PHP:
$char = "\x{9A5B}";
echo $char; // Output: 驛
Ruby:
char = "\u{9A5B}"
puts char # Output: 驛
Rust:
let c = '\u{9A5B}';
println!("{}", c); // Output: 驛
Go:
char := '\u9A5B'
fmt.Printf("%c\n", char) // Output: 驛
CSS:
/* CSS content property */
.element::before {
content: "\009A5B"; /* 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%A9%9B
MD5:
1a806f8137598a229a3f049d0be35181
SHA1:
3b4a861be71c4f45c12733b325b004e7327c2cf8
Base64:
6amb