C:
char c = '\u0701';
printf("%c\n", c); // Output: ܁
JavaScript:
const char = '\u0701';
console.log(char); // Output: ܁
Java:
char c = '\u0701';
System.out.println(c); // Output: ܁
JSON:
{"text": "\u0701"} // Value: ܁
Python:
char = '\u0701'
print(char) # Output: ܁
Perl:
my $char = "\x{0701}";
print $char; # Output: ܁
PHP:
$char = "\x{0701}";
echo $char; // Output: ܁
Ruby:
char = "\u{0701}"
puts char # Output: ܁
Rust:
let c = '\u{701}';
println!("{}", c); // Output: ܁
Go:
char := '\u0701'
fmt.Printf("%c\n", char) // Output: ܁
CSS:
/* CSS content property */
.element::before {
content: "\000701"; /* 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%81
MD5:
b9c5c271abdc18140547c5080aa0be99
SHA1:
ff1de14e101261ea12518073e6c6a4e6d187b480
Base64:
3IE=