C:
char c = '\u0793';
printf("%c\n", c); // Output: ޓ
JavaScript:
const char = '\u0793';
console.log(char); // Output: ޓ
Java:
char c = '\u0793';
System.out.println(c); // Output: ޓ
JSON:
{"text": "\u0793"} // Value: ޓ
Python:
char = '\u0793'
print(char) # Output: ޓ
Perl:
my $char = "\x{0793}";
print $char; # Output: ޓ
PHP:
$char = "\x{0793}";
echo $char; // Output: ޓ
Ruby:
char = "\u{0793}"
puts char # Output: ޓ
Rust:
let c = '\u{793}';
println!("{}", c); // Output: ޓ
Go:
char := '\u0793'
fmt.Printf("%c\n", char) // Output: ޓ
CSS:
/* CSS content property */
.element::before {
content: "\000793"; /* 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%93
MD5:
5d4a72a722b7598601d94a96cdb941af
SHA1:
ef450459f6c4e2208a9da0397a29825b89a542a4
Base64:
3pM=