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