C:
char c = '\u9183';
printf("%c\n", c); // Output: 醃
JavaScript:
const char = '\u9183';
console.log(char); // Output: 醃
Java:
char c = '\u9183';
System.out.println(c); // Output: 醃
JSON:
{"text": "\u9183"} // Value: 醃
Python:
char = '\u9183'
print(char) # Output: 醃
Perl:
my $char = "\x{9183}";
print $char; # Output: 醃
PHP:
$char = "\x{9183}";
echo $char; // Output: 醃
Ruby:
char = "\u{9183}"
puts char # Output: 醃
Rust:
let c = '\u{9183}';
println!("{}", c); // Output: 醃
Go:
char := '\u9183'
fmt.Printf("%c\n", char) // Output: 醃
CSS:
/* CSS content property */
.element::before {
content: "\009183"; /* 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%83
MD5:
8b21b99721d8fc642fe6587e466f83df
SHA1:
77d122c852741a3171ed56c4fb594c7e1b715181
Base64:
6YaD