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