C:
char c = '\u0725';
printf("%c\n", c); // Output: ܥ
JavaScript:
const char = '\u0725';
console.log(char); // Output: ܥ
Java:
char c = '\u0725';
System.out.println(c); // Output: ܥ
JSON:
{"text": "\u0725"} // Value: ܥ
Python:
char = '\u0725'
print(char) # Output: ܥ
Perl:
my $char = "\x{0725}";
print $char; # Output: ܥ
PHP:
$char = "\x{0725}";
echo $char; // Output: ܥ
Ruby:
char = "\u{0725}"
puts char # Output: ܥ
Rust:
let c = '\u{725}';
println!("{}", c); // Output: ܥ
Go:
char := '\u0725'
fmt.Printf("%c\n", char) // Output: ܥ
CSS:
/* CSS content property */
.element::before {
content: "\000725"; /* 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%A5
MD5:
372881f2f51ed34ebe613dafd5f2d92e
SHA1:
44139db31f7ec44318c71cff92009460e7caf20e
Base64:
3KU=