C:
char c = '\u0798';
printf("%c\n", c); // Output: ޘ
JavaScript:
const char = '\u0798';
console.log(char); // Output: ޘ
Java:
char c = '\u0798';
System.out.println(c); // Output: ޘ
JSON:
{"text": "\u0798"} // Value: ޘ
Python:
char = '\u0798'
print(char) # Output: ޘ
Perl:
my $char = "\x{0798}";
print $char; # Output: ޘ
PHP:
$char = "\x{0798}";
echo $char; // Output: ޘ
Ruby:
char = "\u{0798}"
puts char # Output: ޘ
Rust:
let c = '\u{798}';
println!("{}", c); // Output: ޘ
Go:
char := '\u0798'
fmt.Printf("%c\n", char) // Output: ޘ
CSS:
/* CSS content property */
.element::before {
content: "\000798"; /* 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%98
MD5:
af42ab5181a5f968537b67ba8565547b
SHA1:
735c37b75ae91b0627c6842fdcf61fffc2192ae5
Base64:
3pg=