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