C:
char c = '\u0761';
printf("%c\n", c); // Output: ݡ
JavaScript:
const char = '\u0761';
console.log(char); // Output: ݡ
Java:
char c = '\u0761';
System.out.println(c); // Output: ݡ
JSON:
{"text": "\u0761"} // Value: ݡ
Python:
char = '\u0761'
print(char) # Output: ݡ
Perl:
my $char = "\x{0761}";
print $char; # Output: ݡ
PHP:
$char = "\x{0761}";
echo $char; // Output: ݡ
Ruby:
char = "\u{0761}"
puts char # Output: ݡ
Rust:
let c = '\u{761}';
println!("{}", c); // Output: ݡ
Go:
char := '\u0761'
fmt.Printf("%c\n", char) // Output: ݡ
CSS:
/* CSS content property */
.element::before {
content: "\000761"; /* 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%A1
MD5:
291489bad3fe1982ff7256408be0ceb8
SHA1:
1540edae14349dcbe871c159cd7324a0755fc10c
Base64:
3aE=