C:
char c = '\u0748';
printf("%c\n", c); // Output: ݈
JavaScript:
const char = '\u0748';
console.log(char); // Output: ݈
Java:
char c = '\u0748';
System.out.println(c); // Output: ݈
JSON:
{"text": "\u0748"} // Value: ݈
Python:
char = '\u0748'
print(char) # Output: ݈
Perl:
my $char = "\x{0748}";
print $char; # Output: ݈
PHP:
$char = "\x{0748}";
echo $char; // Output: ݈
Ruby:
char = "\u{0748}"
puts char # Output: ݈
Rust:
let c = '\u{748}';
println!("{}", c); // Output: ݈
Go:
char := '\u0748'
fmt.Printf("%c\n", char) // Output: ݈
CSS:
/* CSS content property */
.element::before {
content: "\000748"; /* 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%88
MD5:
94de40eae09ab447f88478692c0a3851
SHA1:
e0b83234248d09f192efc1621e9c50dc77641417
Base64:
3Yg=