C:
char c = '\u9620';
printf("%c\n", c); // Output: 阠
JavaScript:
const char = '\u9620';
console.log(char); // Output: 阠
Java:
char c = '\u9620';
System.out.println(c); // Output: 阠
JSON:
{"text": "\u9620"} // Value: 阠
Python:
char = '\u9620'
print(char) # Output: 阠
Perl:
my $char = "\x{9620}";
print $char; # Output: 阠
PHP:
$char = "\x{9620}";
echo $char; // Output: 阠
Ruby:
char = "\u{9620}"
puts char # Output: 阠
Rust:
let c = '\u{9620}';
println!("{}", c); // Output: 阠
Go:
char := '\u9620'
fmt.Printf("%c\n", char) // Output: 阠
CSS:
/* CSS content property */
.element::before {
content: "\009620"; /* 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%A0
MD5:
086e4a078b007f906d980ed3699ce669
SHA1:
5f0708b8f90c01c008b0a3359d65544c77873571
Base64:
6Zig