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