C:
char c = '\u1586';
printf("%c\n", c); // Output: ᖆ
JavaScript:
const char = '\u1586';
console.log(char); // Output: ᖆ
Java:
char c = '\u1586';
System.out.println(c); // Output: ᖆ
JSON:
{"text": "\u1586"} // Value: ᖆ
Python:
char = '\u1586'
print(char) # Output: ᖆ
Perl:
my $char = "\x{1586}";
print $char; # Output: ᖆ
PHP:
$char = "\x{1586}";
echo $char; // Output: ᖆ
Ruby:
char = "\u{1586}"
puts char # Output: ᖆ
Rust:
let c = '\u{1586}';
println!("{}", c); // Output: ᖆ
Go:
char := '\u1586'
fmt.Printf("%c\n", char) // Output: ᖆ
CSS:
/* CSS content property */
.element::before {
content: "\001586"; /* 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%96%86
MD5:
655913f65d945b53afc519cfcad79611
SHA1:
981dcd3a4da31bed643c2e28b9a51d1a1c612cbe
Base64:
4ZaG