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