C:
char c = '\u0719';
printf("%c\n", c); // Output: ܙ
JavaScript:
const char = '\u0719';
console.log(char); // Output: ܙ
Java:
char c = '\u0719';
System.out.println(c); // Output: ܙ
JSON:
{"text": "\u0719"} // Value: ܙ
Python:
char = '\u0719'
print(char) # Output: ܙ
Perl:
my $char = "\x{0719}";
print $char; # Output: ܙ
PHP:
$char = "\x{0719}";
echo $char; // Output: ܙ
Ruby:
char = "\u{0719}"
puts char # Output: ܙ
Rust:
let c = '\u{719}';
println!("{}", c); // Output: ܙ
Go:
char := '\u0719'
fmt.Printf("%c\n", char) // Output: ܙ
CSS:
/* CSS content property */
.element::before {
content: "\000719"; /* 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=%DC%99
MD5:
a299ac016843a0a6a19f1c96a6383d4b
SHA1:
91207a6e51beefdb5ce2754ad128cc68e83acc8c
Base64:
3Jk=