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