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