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