C:
char c = '\u07A1';
printf("%c\n", c); // Output: ޡ
JavaScript:
const char = '\u07A1';
console.log(char); // Output: ޡ
Java:
char c = '\u07A1';
System.out.println(c); // Output: ޡ
JSON:
{"text": "\u07A1"} // Value: ޡ
Python:
char = '\u07A1'
print(char) # Output: ޡ
Perl:
my $char = "\x{07A1}";
print $char; # Output: ޡ
PHP:
$char = "\x{07A1}";
echo $char; // Output: ޡ
Ruby:
char = "\u{07A1}"
puts char # Output: ޡ
Rust:
let c = '\u{7A1}';
println!("{}", c); // Output: ޡ
Go:
char := '\u07A1'
fmt.Printf("%c\n", char) // Output: ޡ
CSS:
/* CSS content property */
.element::before {
content: "\0007A1"; /* 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=%DE%A1
MD5:
d82d819d4e7ce5c4907a87cbe3ed5994
SHA1:
69dcd6872bc693a2fa546dd8bb0e7238b1323a72
Base64:
3qE=