C:
char c = '\u0744';
printf("%c\n", c); // Output: ݄
JavaScript:
const char = '\u0744';
console.log(char); // Output: ݄
Java:
char c = '\u0744';
System.out.println(c); // Output: ݄
JSON:
{"text": "\u0744"} // Value: ݄
Python:
char = '\u0744'
print(char) # Output: ݄
Perl:
my $char = "\x{0744}";
print $char; # Output: ݄
PHP:
$char = "\x{0744}";
echo $char; // Output: ݄
Ruby:
char = "\u{0744}"
puts char # Output: ݄
Rust:
let c = '\u{744}';
println!("{}", c); // Output: ݄
Go:
char := '\u0744'
fmt.Printf("%c\n", char) // Output: ݄
CSS:
/* CSS content property */
.element::before {
content: "\000744"; /* 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%84
MD5:
505b4f342ae47e07e51b988b96cf08fa
SHA1:
81b207d8489fa37f06833594a5e434c1fccc04c2
Base64:
3YQ=