C:
char c = '\u5909';
printf("%c\n", c); // Output: 変
JavaScript:
const char = '\u5909';
console.log(char); // Output: 変
Java:
char c = '\u5909';
System.out.println(c); // Output: 変
JSON:
{"text": "\u5909"} // Value: 変
Python:
char = '\u5909'
print(char) # Output: 変
Perl:
my $char = "\x{5909}";
print $char; # Output: 変
PHP:
$char = "\x{5909}";
echo $char; // Output: 変
Ruby:
char = "\u{5909}"
puts char # Output: 変
Rust:
let c = '\u{5909}';
println!("{}", c); // Output: 変
Go:
char := '\u5909'
fmt.Printf("%c\n", char) // Output: 変
CSS:
/* CSS content property */
.element::before {
content: "\005909"; /* 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=%E5%A4%89
MD5:
4e1e7bc1dfaae76e9544962a599ed602
SHA1:
650cb8f11766b54adf3bdf3d6f33dd0a852738e5
Base64:
5aSJ