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