C:
char c = '\u0711';
printf("%c\n", c); // Output: ܑ
JavaScript:
const char = '\u0711';
console.log(char); // Output: ܑ
Java:
char c = '\u0711';
System.out.println(c); // Output: ܑ
JSON:
{"text": "\u0711"} // Value: ܑ
Python:
char = '\u0711'
print(char) # Output: ܑ
Perl:
my $char = "\x{0711}";
print $char; # Output: ܑ
PHP:
$char = "\x{0711}";
echo $char; // Output: ܑ
Ruby:
char = "\u{0711}"
puts char # Output: ܑ
Rust:
let c = '\u{711}';
println!("{}", c); // Output: ܑ
Go:
char := '\u0711'
fmt.Printf("%c\n", char) // Output: ܑ
CSS:
/* CSS content property */
.element::before {
content: "\000711"; /* 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%91
MD5:
9e78eb3ece763d92b38893f3c1f9d4e2
SHA1:
45770b879b5409b2f19f835ed3bae3c5554dc8b4
Base64:
3JE=