C:
char c = '\u9691';
printf("%c\n", c); // Output: 隑
JavaScript:
const char = '\u9691';
console.log(char); // Output: 隑
Java:
char c = '\u9691';
System.out.println(c); // Output: 隑
JSON:
{"text": "\u9691"} // Value: 隑
Python:
char = '\u9691'
print(char) # Output: 隑
Perl:
my $char = "\x{9691}";
print $char; # Output: 隑
PHP:
$char = "\x{9691}";
echo $char; // Output: 隑
Ruby:
char = "\u{9691}"
puts char # Output: 隑
Rust:
let c = '\u{9691}';
println!("{}", c); // Output: 隑
Go:
char := '\u9691'
fmt.Printf("%c\n", char) // Output: 隑
CSS:
/* CSS content property */
.element::before {
content: "\009691"; /* 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%91
MD5:
c900ad69b8c7913bee8f40828f6f0023
SHA1:
45172b64bf17537cfba1a474eaab611916438d7b
Base64:
6ZqR