C:
char c = '\u1512';
printf("%c\n", c); // Output: ᔒ
JavaScript:
const char = '\u1512';
console.log(char); // Output: ᔒ
Java:
char c = '\u1512';
System.out.println(c); // Output: ᔒ
JSON:
{"text": "\u1512"} // Value: ᔒ
Python:
char = '\u1512'
print(char) # Output: ᔒ
Perl:
my $char = "\x{1512}";
print $char; # Output: ᔒ
PHP:
$char = "\x{1512}";
echo $char; // Output: ᔒ
Ruby:
char = "\u{1512}"
puts char # Output: ᔒ
Rust:
let c = '\u{1512}';
println!("{}", c); // Output: ᔒ
Go:
char := '\u1512'
fmt.Printf("%c\n", char) // Output: ᔒ
CSS:
/* CSS content property */
.element::before {
content: "\001512"; /* 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%92
MD5:
67a0c5ceaf49ad058e0994fe2df84654
SHA1:
d5c66555eb9c94ff62b26234f257ffa27116c240
Base64:
4ZSS