C:
char c = '\u0716';
printf("%c\n", c); // Output: ܖ
JavaScript:
const char = '\u0716';
console.log(char); // Output: ܖ
Java:
char c = '\u0716';
System.out.println(c); // Output: ܖ
JSON:
{"text": "\u0716"} // Value: ܖ
Python:
char = '\u0716'
print(char) # Output: ܖ
Perl:
my $char = "\x{0716}";
print $char; # Output: ܖ
PHP:
$char = "\x{0716}";
echo $char; // Output: ܖ
Ruby:
char = "\u{0716}"
puts char # Output: ܖ
Rust:
let c = '\u{716}';
println!("{}", c); // Output: ܖ
Go:
char := '\u0716'
fmt.Printf("%c\n", char) // Output: ܖ
CSS:
/* CSS content property */
.element::before {
content: "\000716"; /* 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%96
MD5:
601a56e9130e6572e1ad34456ee89951
SHA1:
6dabf1231c81952307330047bb913e7ab331f708
Base64:
3JY=