C:
char c = '\u0751';
printf("%c\n", c); // Output: ݑ
JavaScript:
const char = '\u0751';
console.log(char); // Output: ݑ
Java:
char c = '\u0751';
System.out.println(c); // Output: ݑ
JSON:
{"text": "\u0751"} // Value: ݑ
Python:
char = '\u0751'
print(char) # Output: ݑ
Perl:
my $char = "\x{0751}";
print $char; # Output: ݑ
PHP:
$char = "\x{0751}";
echo $char; // Output: ݑ
Ruby:
char = "\u{0751}"
puts char # Output: ݑ
Rust:
let c = '\u{751}';
println!("{}", c); // Output: ݑ
Go:
char := '\u0751'
fmt.Printf("%c\n", char) // Output: ݑ
CSS:
/* CSS content property */
.element::before {
content: "\000751"; /* 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%91
MD5:
817f1c38890a8f15e8115e7947763d94
SHA1:
73aa2021b5ce909aa3bc61b5e9db06bbcbab8c69
Base64:
3ZE=