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