C:
char c = '\u0700';
printf("%c\n", c); // Output: ܀
JavaScript:
const char = '\u0700';
console.log(char); // Output: ܀
Java:
char c = '\u0700';
System.out.println(c); // Output: ܀
JSON:
{"text": "\u0700"} // Value: ܀
Python:
char = '\u0700'
print(char) # Output: ܀
Perl:
my $char = "\x{0700}";
print $char; # Output: ܀
PHP:
$char = "\x{0700}";
echo $char; // Output: ܀
Ruby:
char = "\u{0700}"
puts char # Output: ܀
Rust:
let c = '\u{700}';
println!("{}", c); // Output: ܀
Go:
char := '\u0700'
fmt.Printf("%c\n", char) // Output: ܀
CSS:
/* CSS content property */
.element::before {
content: "\000700"; /* 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%80
MD5:
0f1d8fc65898494d5a9cd82eb80517a4
SHA1:
ee74091810dcbad60c7a2e9e47f7c49f3f72aef3
Base64:
3IA=