C:
char c = '\u0731';
printf("%c\n", c); // Output: ܱ
JavaScript:
const char = '\u0731';
console.log(char); // Output: ܱ
Java:
char c = '\u0731';
System.out.println(c); // Output: ܱ
JSON:
{"text": "\u0731"} // Value: ܱ
Python:
char = '\u0731'
print(char) # Output: ܱ
Perl:
my $char = "\x{0731}";
print $char; # Output: ܱ
PHP:
$char = "\x{0731}";
echo $char; // Output: ܱ
Ruby:
char = "\u{0731}"
puts char # Output: ܱ
Rust:
let c = '\u{731}';
println!("{}", c); // Output: ܱ
Go:
char := '\u0731'
fmt.Printf("%c\n", char) // Output: ܱ
CSS:
/* CSS content property */
.element::before {
content: "\000731"; /* 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%B1
MD5:
fe906c4c38a82ae5184bc9a52971712b
SHA1:
f1a75f91290c3000b1dbcf07fb5a6e40f007b875
Base64:
3LE=