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