C:
char c = '\u0723';
printf("%c\n", c); // Output: ܣ
JavaScript:
const char = '\u0723';
console.log(char); // Output: ܣ
Java:
char c = '\u0723';
System.out.println(c); // Output: ܣ
JSON:
{"text": "\u0723"} // Value: ܣ
Python:
char = '\u0723'
print(char) # Output: ܣ
Perl:
my $char = "\x{0723}";
print $char; # Output: ܣ
PHP:
$char = "\x{0723}";
echo $char; // Output: ܣ
Ruby:
char = "\u{0723}"
puts char # Output: ܣ
Rust:
let c = '\u{723}';
println!("{}", c); // Output: ܣ
Go:
char := '\u0723'
fmt.Printf("%c\n", char) // Output: ܣ
CSS:
/* CSS content property */
.element::before {
content: "\000723"; /* 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%A3
MD5:
08ff06c39cfdc47d01add357ee284c34
SHA1:
b6ea7b835c702a5d02637765d6aa60fefbbf317c
Base64:
3KM=