C:
char c = '\u9682';
printf("%c\n", c); // Output: 隂
JavaScript:
const char = '\u9682';
console.log(char); // Output: 隂
Java:
char c = '\u9682';
System.out.println(c); // Output: 隂
JSON:
{"text": "\u9682"} // Value: 隂
Python:
char = '\u9682'
print(char) # Output: 隂
Perl:
my $char = "\x{9682}";
print $char; # Output: 隂
PHP:
$char = "\x{9682}";
echo $char; // Output: 隂
Ruby:
char = "\u{9682}"
puts char # Output: 隂
Rust:
let c = '\u{9682}';
println!("{}", c); // Output: 隂
Go:
char := '\u9682'
fmt.Printf("%c\n", char) // Output: 隂
CSS:
/* CSS content property */
.element::before {
content: "\009682"; /* 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%82
MD5:
ce160db80e61dc55dfd3e0a935aa7bf8
SHA1:
e123f0ca23624e7daff1619b5c1252bc5323b325
Base64:
6ZqC