C:
char c = '\u1996';
printf("%c\n", c); // Output: ᦖ
JavaScript:
const char = '\u1996';
console.log(char); // Output: ᦖ
Java:
char c = '\u1996';
System.out.println(c); // Output: ᦖ
JSON:
{"text": "\u1996"} // Value: ᦖ
Python:
char = '\u1996'
print(char) # Output: ᦖ
Perl:
my $char = "\x{1996}";
print $char; # Output: ᦖ
PHP:
$char = "\x{1996}";
echo $char; // Output: ᦖ
Ruby:
char = "\u{1996}"
puts char # Output: ᦖ
Rust:
let c = '\u{1996}';
println!("{}", c); // Output: ᦖ
Go:
char := '\u1996'
fmt.Printf("%c\n", char) // Output: ᦖ
CSS:
/* CSS content property */
.element::before {
content: "\001996"; /* 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=%E1%A6%96
MD5:
0c3933cc03f00141a1978dabb057b712
SHA1:
69e610ae8f42da4b0b2d2264023c0e0d229093bc
Base64:
4aaW