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