C:
char c = '\u0717';
printf("%c\n", c); // Output: ܗ
JavaScript:
const char = '\u0717';
console.log(char); // Output: ܗ
Java:
char c = '\u0717';
System.out.println(c); // Output: ܗ
JSON:
{"text": "\u0717"} // Value: ܗ
Python:
char = '\u0717'
print(char) # Output: ܗ
Perl:
my $char = "\x{0717}";
print $char; # Output: ܗ
PHP:
$char = "\x{0717}";
echo $char; // Output: ܗ
Ruby:
char = "\u{0717}"
puts char # Output: ܗ
Rust:
let c = '\u{717}';
println!("{}", c); // Output: ܗ
Go:
char := '\u0717'
fmt.Printf("%c\n", char) // Output: ܗ
CSS:
/* CSS content property */
.element::before {
content: "\000717"; /* 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%97
MD5:
7d5052bf88520dd59f02f70a0b7c1fc8
SHA1:
495d360ff3c4d60d30ca1dadd417586b7d84876b
Base64:
3Jc=