C:
char c = '\u0795';
printf("%c\n", c); // Output: ޕ
JavaScript:
const char = '\u0795';
console.log(char); // Output: ޕ
Java:
char c = '\u0795';
System.out.println(c); // Output: ޕ
JSON:
{"text": "\u0795"} // Value: ޕ
Python:
char = '\u0795'
print(char) # Output: ޕ
Perl:
my $char = "\x{0795}";
print $char; # Output: ޕ
PHP:
$char = "\x{0795}";
echo $char; // Output: ޕ
Ruby:
char = "\u{0795}"
puts char # Output: ޕ
Rust:
let c = '\u{795}';
println!("{}", c); // Output: ޕ
Go:
char := '\u0795'
fmt.Printf("%c\n", char) // Output: ޕ
CSS:
/* CSS content property */
.element::before {
content: "\000795"; /* 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=%DE%95
MD5:
f3fa85fa260a88bf966b5459741a5c0a
SHA1:
2603bdfab583c5837b3e9975c3823ac6f86bcf0a
Base64:
3pU=