C:
char c = '\u1519';
printf("%c\n", c); // Output: ᔙ
JavaScript:
const char = '\u1519';
console.log(char); // Output: ᔙ
Java:
char c = '\u1519';
System.out.println(c); // Output: ᔙ
JSON:
{"text": "\u1519"} // Value: ᔙ
Python:
char = '\u1519'
print(char) # Output: ᔙ
Perl:
my $char = "\x{1519}";
print $char; # Output: ᔙ
PHP:
$char = "\x{1519}";
echo $char; // Output: ᔙ
Ruby:
char = "\u{1519}"
puts char # Output: ᔙ
Rust:
let c = '\u{1519}';
println!("{}", c); // Output: ᔙ
Go:
char := '\u1519'
fmt.Printf("%c\n", char) // Output: ᔙ
CSS:
/* CSS content property */
.element::before {
content: "\001519"; /* 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%99
MD5:
d9444dea02ad7395832eb99339eeeb63
SHA1:
9bce971453e7db873f6539b9ad9b433525c8d754
Base64:
4ZSZ