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