C:
char c = '\u9B19';
printf("%c\n", c); // Output: 鬙
JavaScript:
const char = '\u9B19';
console.log(char); // Output: 鬙
Java:
char c = '\u9B19';
System.out.println(c); // Output: 鬙
JSON:
{"text": "\u9B19"} // Value: 鬙
Python:
char = '\u9B19'
print(char) # Output: 鬙
Perl:
my $char = "\x{9B19}";
print $char; # Output: 鬙
PHP:
$char = "\x{9B19}";
echo $char; // Output: 鬙
Ruby:
char = "\u{9B19}"
puts char # Output: 鬙
Rust:
let c = '\u{9B19}';
println!("{}", c); // Output: 鬙
Go:
char := '\u9B19'
fmt.Printf("%c\n", char) // Output: 鬙
CSS:
/* CSS content property */
.element::before {
content: "\009B19"; /* 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%AC%99
MD5:
c0f0ed76c09ae4d10c5b27b76c9aeaa0
SHA1:
239830ea09a422a7d96f7819d59ed188770ef1b0
Base64:
6ayZ