C:
char c = '\u0710';
printf("%c\n", c); // Output: ܐ
JavaScript:
const char = '\u0710';
console.log(char); // Output: ܐ
Java:
char c = '\u0710';
System.out.println(c); // Output: ܐ
JSON:
{"text": "\u0710"} // Value: ܐ
Python:
char = '\u0710'
print(char) # Output: ܐ
Perl:
my $char = "\x{0710}";
print $char; # Output: ܐ
PHP:
$char = "\x{0710}";
echo $char; // Output: ܐ
Ruby:
char = "\u{0710}"
puts char # Output: ܐ
Rust:
let c = '\u{710}';
println!("{}", c); // Output: ܐ
Go:
char := '\u0710'
fmt.Printf("%c\n", char) // Output: ܐ
CSS:
/* CSS content property */
.element::before {
content: "\000710"; /* 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%90
MD5:
a96e34a842d1fa2e402fd16de610ba28
SHA1:
d1321337365d2a025f962fb6c45755e3216f7fe2
Base64:
3JA=