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