C:
char c = '\u0760';
printf("%c\n", c); // Output: ݠ
JavaScript:
const char = '\u0760';
console.log(char); // Output: ݠ
Java:
char c = '\u0760';
System.out.println(c); // Output: ݠ
JSON:
{"text": "\u0760"} // Value: ݠ
Python:
char = '\u0760'
print(char) # Output: ݠ
Perl:
my $char = "\x{0760}";
print $char; # Output: ݠ
PHP:
$char = "\x{0760}";
echo $char; // Output: ݠ
Ruby:
char = "\u{0760}"
puts char # Output: ݠ
Rust:
let c = '\u{760}';
println!("{}", c); // Output: ݠ
Go:
char := '\u0760'
fmt.Printf("%c\n", char) // Output: ݠ
CSS:
/* CSS content property */
.element::before {
content: "\000760"; /* 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%A0
MD5:
cd9fcc14881e99f55a0a4e0bcd071100
SHA1:
7d865f2649879e230fc1cb87d396b5b2fa157626
Base64:
3aA=