C:
char c = '\u9604';
printf("%c\n", c); // Output: 阄
JavaScript:
const char = '\u9604';
console.log(char); // Output: 阄
Java:
char c = '\u9604';
System.out.println(c); // Output: 阄
JSON:
{"text": "\u9604"} // Value: 阄
Python:
char = '\u9604'
print(char) # Output: 阄
Perl:
my $char = "\x{9604}";
print $char; # Output: 阄
PHP:
$char = "\x{9604}";
echo $char; // Output: 阄
Ruby:
char = "\u{9604}"
puts char # Output: 阄
Rust:
let c = '\u{9604}';
println!("{}", c); // Output: 阄
Go:
char := '\u9604'
fmt.Printf("%c\n", char) // Output: 阄
CSS:
/* CSS content property */
.element::before {
content: "\009604"; /* 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%84
MD5:
4dc5f4276272a2b7374c9fbe7fc1f41f
SHA1:
bbf6cbd03f07a77dce14667d9fbee395e131fef8
Base64:
6ZiE