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