C:
char c = '\u057F';
printf("%c\n", c); // Output: տ
JavaScript:
const char = '\u057F';
console.log(char); // Output: տ
Java:
char c = '\u057F';
System.out.println(c); // Output: տ
JSON:
{"text": "\u057F"} // Value: տ
Python:
char = '\u057F'
print(char) # Output: տ
Perl:
my $char = "\x{057F}";
print $char; # Output: տ
PHP:
$char = "\x{057F}";
echo $char; // Output: տ
Ruby:
char = "\u{057F}"
puts char # Output: տ
Rust:
let c = '\u{57F}';
println!("{}", c); // Output: տ
Go:
char := '\u057F'
fmt.Printf("%c\n", char) // Output: տ
CSS:
/* CSS content property */
.element::before {
content: "\00057F"; /* 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=%D5%BF
MD5:
4408f529ff4bb2d5e20e66eff6d07994
SHA1:
6dcbd689edd0715a9b666932821074bcb58dceb4
Base64:
1b8=