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