C:
char c = '\u1516';
printf("%c\n", c); // Output: ᔖ
JavaScript:
const char = '\u1516';
console.log(char); // Output: ᔖ
Java:
char c = '\u1516';
System.out.println(c); // Output: ᔖ
JSON:
{"text": "\u1516"} // Value: ᔖ
Python:
char = '\u1516'
print(char) # Output: ᔖ
Perl:
my $char = "\x{1516}";
print $char; # Output: ᔖ
PHP:
$char = "\x{1516}";
echo $char; // Output: ᔖ
Ruby:
char = "\u{1516}"
puts char # Output: ᔖ
Rust:
let c = '\u{1516}';
println!("{}", c); // Output: ᔖ
Go:
char := '\u1516'
fmt.Printf("%c\n", char) // Output: ᔖ
CSS:
/* CSS content property */
.element::before {
content: "\001516"; /* 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%94%96
MD5:
1d1061416afd95763d0024ce8c45fba7
SHA1:
20e3710b7d98d82493a9d0bc770ce463a5b00584
Base64:
4ZSW