C:
char c = '\u0752';
printf("%c\n", c); // Output: ݒ
JavaScript:
const char = '\u0752';
console.log(char); // Output: ݒ
Java:
char c = '\u0752';
System.out.println(c); // Output: ݒ
JSON:
{"text": "\u0752"} // Value: ݒ
Python:
char = '\u0752'
print(char) # Output: ݒ
Perl:
my $char = "\x{0752}";
print $char; # Output: ݒ
PHP:
$char = "\x{0752}";
echo $char; // Output: ݒ
Ruby:
char = "\u{0752}"
puts char # Output: ݒ
Rust:
let c = '\u{752}';
println!("{}", c); // Output: ݒ
Go:
char := '\u0752'
fmt.Printf("%c\n", char) // Output: ݒ
CSS:
/* CSS content property */
.element::before {
content: "\000752"; /* 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%92
MD5:
2e4793026bbb69d2215898f2e9bbf859
SHA1:
9275024101ef2c88e4f8c22f6e54a722d3708805
Base64:
3ZI=