C:
char c = '\u9681';
printf("%c\n", c); // Output: 隁
JavaScript:
const char = '\u9681';
console.log(char); // Output: 隁
Java:
char c = '\u9681';
System.out.println(c); // Output: 隁
JSON:
{"text": "\u9681"} // Value: 隁
Python:
char = '\u9681'
print(char) # Output: 隁
Perl:
my $char = "\x{9681}";
print $char; # Output: 隁
PHP:
$char = "\x{9681}";
echo $char; // Output: 隁
Ruby:
char = "\u{9681}"
puts char # Output: 隁
Rust:
let c = '\u{9681}';
println!("{}", c); // Output: 隁
Go:
char := '\u9681'
fmt.Printf("%c\n", char) // Output: 隁
CSS:
/* CSS content property */
.element::before {
content: "\009681"; /* 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%9A%81
MD5:
0b963582ff9d2470f50b2ac8723bdf41
SHA1:
ad230a119b74e50af9a5e3f09c15d8d4f7d763da
Base64:
6ZqB