C:
char c = '\u0774';
printf("%c\n", c); // Output: ݴ
JavaScript:
const char = '\u0774';
console.log(char); // Output: ݴ
Java:
char c = '\u0774';
System.out.println(c); // Output: ݴ
JSON:
{"text": "\u0774"} // Value: ݴ
Python:
char = '\u0774'
print(char) # Output: ݴ
Perl:
my $char = "\x{0774}";
print $char; # Output: ݴ
PHP:
$char = "\x{0774}";
echo $char; // Output: ݴ
Ruby:
char = "\u{0774}"
puts char # Output: ݴ
Rust:
let c = '\u{774}';
println!("{}", c); // Output: ݴ
Go:
char := '\u0774'
fmt.Printf("%c\n", char) // Output: ݴ
CSS:
/* CSS content property */
.element::before {
content: "\000774"; /* 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%B4
MD5:
1a9bab99864b179803cc2b3e1a7afa58
SHA1:
77998e0183c3cdee57ab14914604a9360328366a
Base64:
3bQ=