C:
char c = '\u0703';
printf("%c\n", c); // Output: ܃
JavaScript:
const char = '\u0703';
console.log(char); // Output: ܃
Java:
char c = '\u0703';
System.out.println(c); // Output: ܃
JSON:
{"text": "\u0703"} // Value: ܃
Python:
char = '\u0703'
print(char) # Output: ܃
Perl:
my $char = "\x{0703}";
print $char; # Output: ܃
PHP:
$char = "\x{0703}";
echo $char; // Output: ܃
Ruby:
char = "\u{0703}"
puts char # Output: ܃
Rust:
let c = '\u{703}';
println!("{}", c); // Output: ܃
Go:
char := '\u0703'
fmt.Printf("%c\n", char) // Output: ܃
CSS:
/* CSS content property */
.element::before {
content: "\000703"; /* 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%83
MD5:
a4cf1bbc63d548a7dbb7c496b9b70c94
SHA1:
9a51a20e8b0754667a1e21eba9b59419ff2d57cb
Base64:
3IM=