C:
char c = '\u0769';
printf("%c\n", c); // Output: ݩ
JavaScript:
const char = '\u0769';
console.log(char); // Output: ݩ
Java:
char c = '\u0769';
System.out.println(c); // Output: ݩ
JSON:
{"text": "\u0769"} // Value: ݩ
Python:
char = '\u0769'
print(char) # Output: ݩ
Perl:
my $char = "\x{0769}";
print $char; # Output: ݩ
PHP:
$char = "\x{0769}";
echo $char; // Output: ݩ
Ruby:
char = "\u{0769}"
puts char # Output: ݩ
Rust:
let c = '\u{769}';
println!("{}", c); // Output: ݩ
Go:
char := '\u0769'
fmt.Printf("%c\n", char) // Output: ݩ
CSS:
/* CSS content property */
.element::before {
content: "\000769"; /* 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%A9
MD5:
5cf08bf3302e0ae8b032c389a48e6f14
SHA1:
8f50a4a6f7091880553cd1e4bbfa9606db6f0f2b
Base64:
3ak=