C:
char c = '\u1583';
printf("%c\n", c); // Output: ᖃ
JavaScript:
const char = '\u1583';
console.log(char); // Output: ᖃ
Java:
char c = '\u1583';
System.out.println(c); // Output: ᖃ
JSON:
{"text": "\u1583"} // Value: ᖃ
Python:
char = '\u1583'
print(char) # Output: ᖃ
Perl:
my $char = "\x{1583}";
print $char; # Output: ᖃ
PHP:
$char = "\x{1583}";
echo $char; // Output: ᖃ
Ruby:
char = "\u{1583}"
puts char # Output: ᖃ
Rust:
let c = '\u{1583}';
println!("{}", c); // Output: ᖃ
Go:
char := '\u1583'
fmt.Printf("%c\n", char) // Output: ᖃ
CSS:
/* CSS content property */
.element::before {
content: "\001583"; /* 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%83
MD5:
8c2e74b694e33f8e72f81a35bb67b510
SHA1:
d4638cd3acc4e272d74560741276e607d583df92
Base64:
4ZaD