C:
char c = '\u0792';
printf("%c\n", c); // Output: ޒ
JavaScript:
const char = '\u0792';
console.log(char); // Output: ޒ
Java:
char c = '\u0792';
System.out.println(c); // Output: ޒ
JSON:
{"text": "\u0792"} // Value: ޒ
Python:
char = '\u0792'
print(char) # Output: ޒ
Perl:
my $char = "\x{0792}";
print $char; # Output: ޒ
PHP:
$char = "\x{0792}";
echo $char; // Output: ޒ
Ruby:
char = "\u{0792}"
puts char # Output: ޒ
Rust:
let c = '\u{792}';
println!("{}", c); // Output: ޒ
Go:
char := '\u0792'
fmt.Printf("%c\n", char) // Output: ޒ
CSS:
/* CSS content property */
.element::before {
content: "\000792"; /* 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%92
MD5:
921f6f9aaf0fb9358ad3836c375453d5
SHA1:
fee0e2dad5960675f0d0e93e7c97f4d42e3f1386
Base64:
3pI=