C:
char c = '\u075A';
printf("%c\n", c); // Output: ݚ
JavaScript:
const char = '\u075A';
console.log(char); // Output: ݚ
Java:
char c = '\u075A';
System.out.println(c); // Output: ݚ
JSON:
{"text": "\u075A"} // Value: ݚ
Python:
char = '\u075A'
print(char) # Output: ݚ
Perl:
my $char = "\x{075A}";
print $char; # Output: ݚ
PHP:
$char = "\x{075A}";
echo $char; // Output: ݚ
Ruby:
char = "\u{075A}"
puts char # Output: ݚ
Rust:
let c = '\u{75A}';
println!("{}", c); // Output: ݚ
Go:
char := '\u075A'
fmt.Printf("%c\n", char) // Output: ݚ
CSS:
/* CSS content property */
.element::before {
content: "\00075A"; /* 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%9A
MD5:
17c6c889e7cfcb64fccdf3a98381c358
SHA1:
d133b3c96787948e23327dfb737c397d23a97677
Base64:
3Zo=