C:
char c = '\u0773';
printf("%c\n", c); // Output: ݳ
JavaScript:
const char = '\u0773';
console.log(char); // Output: ݳ
Java:
char c = '\u0773';
System.out.println(c); // Output: ݳ
JSON:
{"text": "\u0773"} // Value: ݳ
Python:
char = '\u0773'
print(char) # Output: ݳ
Perl:
my $char = "\x{0773}";
print $char; # Output: ݳ
PHP:
$char = "\x{0773}";
echo $char; // Output: ݳ
Ruby:
char = "\u{0773}"
puts char # Output: ݳ
Rust:
let c = '\u{773}';
println!("{}", c); // Output: ݳ
Go:
char := '\u0773'
fmt.Printf("%c\n", char) // Output: ݳ
CSS:
/* CSS content property */
.element::before {
content: "\000773"; /* 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%B3
MD5:
0be7963d62a8bb721d806fed9121628d
SHA1:
62502fc7d7edcb94f7380e615993565bebc5831d
Base64:
3bM=