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