C:
char c = '\u9603';
printf("%c\n", c); // Output: 阃
JavaScript:
const char = '\u9603';
console.log(char); // Output: 阃
Java:
char c = '\u9603';
System.out.println(c); // Output: 阃
JSON:
{"text": "\u9603"} // Value: 阃
Python:
char = '\u9603'
print(char) # Output: 阃
Perl:
my $char = "\x{9603}";
print $char; # Output: 阃
PHP:
$char = "\x{9603}";
echo $char; // Output: 阃
Ruby:
char = "\u{9603}"
puts char # Output: 阃
Rust:
let c = '\u{9603}';
println!("{}", c); // Output: 阃
Go:
char := '\u9603'
fmt.Printf("%c\n", char) // Output: 阃
CSS:
/* CSS content property */
.element::before {
content: "\009603"; /* 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%83
MD5:
8ee2d21a04b0f3f70f0ad6dd087f4af4
SHA1:
f80f196d94e61d91399b67ce324165bb10b383d0
Base64:
6ZiD