C:
char c = '\u0564';
printf("%c\n", c); // Output: դ
JavaScript:
const char = '\u0564';
console.log(char); // Output: դ
Java:
char c = '\u0564';
System.out.println(c); // Output: դ
JSON:
{"text": "\u0564"} // Value: դ
Python:
char = '\u0564'
print(char) # Output: դ
Perl:
my $char = "\x{0564}";
print $char; # Output: դ
PHP:
$char = "\x{0564}";
echo $char; // Output: դ
Ruby:
char = "\u{0564}"
puts char # Output: դ
Rust:
let c = '\u{564}';
println!("{}", c); // Output: դ
Go:
char := '\u0564'
fmt.Printf("%c\n", char) // Output: դ
CSS:
/* CSS content property */
.element::before {
content: "\000564"; /* 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=%D5%A4
MD5:
47b6ca75e21e71bbe4aa7f443620be70
SHA1:
98d421c6fb847bce304eeacbe3ec6ea12e5170e8
Base64:
1aQ=