C:
char c = '\u9063';
printf("%c\n", c); // Output: 遣
JavaScript:
const char = '\u9063';
console.log(char); // Output: 遣
Java:
char c = '\u9063';
System.out.println(c); // Output: 遣
JSON:
{"text": "\u9063"} // Value: 遣
Python:
char = '\u9063'
print(char) # Output: 遣
Perl:
my $char = "\x{9063}";
print $char; # Output: 遣
PHP:
$char = "\x{9063}";
echo $char; // Output: 遣
Ruby:
char = "\u{9063}"
puts char # Output: 遣
Rust:
let c = '\u{9063}';
println!("{}", c); // Output: 遣
Go:
char := '\u9063'
fmt.Printf("%c\n", char) // Output: 遣
CSS:
/* CSS content property */
.element::before {
content: "\009063"; /* 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%81%A3
MD5:
ef32e627037ea2065a5e9d35ac26bb48
SHA1:
05a3eaf4abfcd7ac1c148f7d0bee7496f9ef4be6
Base64:
6YGj