C:
char c = '\u0729';
printf("%c\n", c); // Output: ܩ
JavaScript:
const char = '\u0729';
console.log(char); // Output: ܩ
Java:
char c = '\u0729';
System.out.println(c); // Output: ܩ
JSON:
{"text": "\u0729"} // Value: ܩ
Python:
char = '\u0729'
print(char) # Output: ܩ
Perl:
my $char = "\x{0729}";
print $char; # Output: ܩ
PHP:
$char = "\x{0729}";
echo $char; // Output: ܩ
Ruby:
char = "\u{0729}"
puts char # Output: ܩ
Rust:
let c = '\u{729}';
println!("{}", c); // Output: ܩ
Go:
char := '\u0729'
fmt.Printf("%c\n", char) // Output: ܩ
CSS:
/* CSS content property */
.element::before {
content: "\000729"; /* 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%A9
MD5:
16cb9572a904b0a7383aa71c1d0e5331
SHA1:
d104cb707d9fa092418e8b2c7e6d676e9b3a9541
Base64:
3Kk=