C:
char c = '\u85AC';
printf("%c\n", c); // Output: 薬
JavaScript:
const char = '\u85AC';
console.log(char); // Output: 薬
Java:
char c = '\u85AC';
System.out.println(c); // Output: 薬
JSON:
{"text": "\u85AC"} // Value: 薬
Python:
char = '\u85AC'
print(char) # Output: 薬
Perl:
my $char = "\x{85AC}";
print $char; # Output: 薬
PHP:
$char = "\x{85AC}";
echo $char; // Output: 薬
Ruby:
char = "\u{85AC}"
puts char # Output: 薬
Rust:
let c = '\u{85AC}';
println!("{}", c); // Output: 薬
Go:
char := '\u85AC'
fmt.Printf("%c\n", char) // Output: 薬
CSS:
/* CSS content property */
.element::before {
content: "\0085AC"; /* 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=%E8%96%AC
MD5:
b0af76f501812f34b55ab0f8846ed7a1
SHA1:
c98fb0141cc43e0f795de87722038177b70e84bd
Base64:
6Jas