C:
char c = '\u9613';
printf("%c\n", c); // Output: 阓
JavaScript:
const char = '\u9613';
console.log(char); // Output: 阓
Java:
char c = '\u9613';
System.out.println(c); // Output: 阓
JSON:
{"text": "\u9613"} // Value: 阓
Python:
char = '\u9613'
print(char) # Output: 阓
Perl:
my $char = "\x{9613}";
print $char; # Output: 阓
PHP:
$char = "\x{9613}";
echo $char; // Output: 阓
Ruby:
char = "\u{9613}"
puts char # Output: 阓
Rust:
let c = '\u{9613}';
println!("{}", c); // Output: 阓
Go:
char := '\u9613'
fmt.Printf("%c\n", char) // Output: 阓
CSS:
/* CSS content property */
.element::before {
content: "\009613"; /* 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%93
MD5:
6f44639868d7a9c24d752bae575a0b09
SHA1:
397503bfa547a4e1c28417ed6468c2268a0431a3
Base64:
6ZiT