C:
char c = '\u0724';
printf("%c\n", c); // Output: ܤ
JavaScript:
const char = '\u0724';
console.log(char); // Output: ܤ
Java:
char c = '\u0724';
System.out.println(c); // Output: ܤ
JSON:
{"text": "\u0724"} // Value: ܤ
Python:
char = '\u0724'
print(char) # Output: ܤ
Perl:
my $char = "\x{0724}";
print $char; # Output: ܤ
PHP:
$char = "\x{0724}";
echo $char; // Output: ܤ
Ruby:
char = "\u{0724}"
puts char # Output: ܤ
Rust:
let c = '\u{724}';
println!("{}", c); // Output: ܤ
Go:
char := '\u0724'
fmt.Printf("%c\n", char) // Output: ܤ
CSS:
/* CSS content property */
.element::before {
content: "\000724"; /* 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%A4
MD5:
b765cbe6eb6274d710827d1b0ae7f84e
SHA1:
70e0ff98d688dab6a1d9715186a5552df1b0dc4d
Base64:
3KQ=