C:
char c = '\u0799';
printf("%c\n", c); // Output: ޙ
JavaScript:
const char = '\u0799';
console.log(char); // Output: ޙ
Java:
char c = '\u0799';
System.out.println(c); // Output: ޙ
JSON:
{"text": "\u0799"} // Value: ޙ
Python:
char = '\u0799'
print(char) # Output: ޙ
Perl:
my $char = "\x{0799}";
print $char; # Output: ޙ
PHP:
$char = "\x{0799}";
echo $char; // Output: ޙ
Ruby:
char = "\u{0799}"
puts char # Output: ޙ
Rust:
let c = '\u{799}';
println!("{}", c); // Output: ޙ
Go:
char := '\u0799'
fmt.Printf("%c\n", char) // Output: ޙ
CSS:
/* CSS content property */
.element::before {
content: "\000799"; /* 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%99
MD5:
442f4fe8549c2640a94180dc47136a79
SHA1:
79e77f3ea2c1d7b0cb6da9270ba62f21cf55d631
Base64:
3pk=