C:
char c = '\u0750';
printf("%c\n", c); // Output: ݐ
JavaScript:
const char = '\u0750';
console.log(char); // Output: ݐ
Java:
char c = '\u0750';
System.out.println(c); // Output: ݐ
JSON:
{"text": "\u0750"} // Value: ݐ
Python:
char = '\u0750'
print(char) # Output: ݐ
Perl:
my $char = "\x{0750}";
print $char; # Output: ݐ
PHP:
$char = "\x{0750}";
echo $char; // Output: ݐ
Ruby:
char = "\u{0750}"
puts char # Output: ݐ
Rust:
let c = '\u{750}';
println!("{}", c); // Output: ݐ
Go:
char := '\u0750'
fmt.Printf("%c\n", char) // Output: ݐ
CSS:
/* CSS content property */
.element::before {
content: "\000750"; /* 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%90
MD5:
738ddf05b273ef74b8514cb46cb7140d
SHA1:
68a803580365264f0bfe29834e5091809e80c424
Base64:
3ZA=