C:
char c = '\u0743';
printf("%c\n", c); // Output: ݃
JavaScript:
const char = '\u0743';
console.log(char); // Output: ݃
Java:
char c = '\u0743';
System.out.println(c); // Output: ݃
JSON:
{"text": "\u0743"} // Value: ݃
Python:
char = '\u0743'
print(char) # Output: ݃
Perl:
my $char = "\x{0743}";
print $char; # Output: ݃
PHP:
$char = "\x{0743}";
echo $char; // Output: ݃
Ruby:
char = "\u{0743}"
puts char # Output: ݃
Rust:
let c = '\u{743}';
println!("{}", c); // Output: ݃
Go:
char := '\u0743'
fmt.Printf("%c\n", char) // Output: ݃
CSS:
/* CSS content property */
.element::before {
content: "\000743"; /* 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%83
MD5:
a44577fd7525b848dcd95ae3edac9801
SHA1:
5d8ad89681688be1be9ea6671fbe5071af75d984
Base64:
3YM=