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