C:
char c = '\u1593';
printf("%c\n", c); // Output: ᖓ
JavaScript:
const char = '\u1593';
console.log(char); // Output: ᖓ
Java:
char c = '\u1593';
System.out.println(c); // Output: ᖓ
JSON:
{"text": "\u1593"} // Value: ᖓ
Python:
char = '\u1593'
print(char) # Output: ᖓ
Perl:
my $char = "\x{1593}";
print $char; # Output: ᖓ
PHP:
$char = "\x{1593}";
echo $char; // Output: ᖓ
Ruby:
char = "\u{1593}"
puts char # Output: ᖓ
Rust:
let c = '\u{1593}';
println!("{}", c); // Output: ᖓ
Go:
char := '\u1593'
fmt.Printf("%c\n", char) // Output: ᖓ
CSS:
/* CSS content property */
.element::before {
content: "\001593"; /* 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%93
MD5:
63921c598b94fa290246e965111992f8
SHA1:
27e5ecfa5a26fa04dd3d363ad1129d018c2342ef
Base64:
4ZaT