C:
char c = '\u9195';
printf("%c\n", c); // Output: 醕
JavaScript:
const char = '\u9195';
console.log(char); // Output: 醕
Java:
char c = '\u9195';
System.out.println(c); // Output: 醕
JSON:
{"text": "\u9195"} // Value: 醕
Python:
char = '\u9195'
print(char) # Output: 醕
Perl:
my $char = "\x{9195}";
print $char; # Output: 醕
PHP:
$char = "\x{9195}";
echo $char; // Output: 醕
Ruby:
char = "\u{9195}"
puts char # Output: 醕
Rust:
let c = '\u{9195}';
println!("{}", c); // Output: 醕
Go:
char := '\u9195'
fmt.Printf("%c\n", char) // Output: 醕
CSS:
/* CSS content property */
.element::before {
content: "\009195"; /* 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%86%95
MD5:
e9f422d69909039373a5a0d8348e9988
SHA1:
7ee785d4fcc7ff1389e6c43650707c075aa619ea
Base64:
6YaV