C:
char c = '\u0797';
printf("%c\n", c); // Output: ޗ
JavaScript:
const char = '\u0797';
console.log(char); // Output: ޗ
Java:
char c = '\u0797';
System.out.println(c); // Output: ޗ
JSON:
{"text": "\u0797"} // Value: ޗ
Python:
char = '\u0797'
print(char) # Output: ޗ
Perl:
my $char = "\x{0797}";
print $char; # Output: ޗ
PHP:
$char = "\x{0797}";
echo $char; // Output: ޗ
Ruby:
char = "\u{0797}"
puts char # Output: ޗ
Rust:
let c = '\u{797}';
println!("{}", c); // Output: ޗ
Go:
char := '\u0797'
fmt.Printf("%c\n", char) // Output: ޗ
CSS:
/* CSS content property */
.element::before {
content: "\000797"; /* 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%97
MD5:
9c324a173420480ddc3401ec82d64a63
SHA1:
f6c6a3c92b3d8a0233a7ce7579316119cd6087a2
Base64:
3pc=