C:
char c = '\u0726';
printf("%c\n", c); // Output: ܦ
JavaScript:
const char = '\u0726';
console.log(char); // Output: ܦ
Java:
char c = '\u0726';
System.out.println(c); // Output: ܦ
JSON:
{"text": "\u0726"} // Value: ܦ
Python:
char = '\u0726'
print(char) # Output: ܦ
Perl:
my $char = "\x{0726}";
print $char; # Output: ܦ
PHP:
$char = "\x{0726}";
echo $char; // Output: ܦ
Ruby:
char = "\u{0726}"
puts char # Output: ܦ
Rust:
let c = '\u{726}';
println!("{}", c); // Output: ܦ
Go:
char := '\u0726'
fmt.Printf("%c\n", char) // Output: ܦ
CSS:
/* CSS content property */
.element::before {
content: "\000726"; /* 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%A6
MD5:
05b1c520a3fec7ffa69f152822857acf
SHA1:
ab33893a24ad23c12dbe426ea6c1e56d4ba519f2
Base64:
3KY=