C:
char c = '\u9621';
printf("%c\n", c); // Output: 阡
JavaScript:
const char = '\u9621';
console.log(char); // Output: 阡
Java:
char c = '\u9621';
System.out.println(c); // Output: 阡
JSON:
{"text": "\u9621"} // Value: 阡
Python:
char = '\u9621'
print(char) # Output: 阡
Perl:
my $char = "\x{9621}";
print $char; # Output: 阡
PHP:
$char = "\x{9621}";
echo $char; // Output: 阡
Ruby:
char = "\u{9621}"
puts char # Output: 阡
Rust:
let c = '\u{9621}';
println!("{}", c); // Output: 阡
Go:
char := '\u9621'
fmt.Printf("%c\n", char) // Output: 阡
CSS:
/* CSS content property */
.element::before {
content: "\009621"; /* 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%A1
MD5:
70ba895d8b6dc67bdcf846ea69dfad69
SHA1:
7f94350f0d3ca96b6e34b57a67c3711fd9c09065
Base64:
6Zih