C:
char c = '\u055A';
printf("%c\n", c); // Output: ՚
JavaScript:
const char = '\u055A';
console.log(char); // Output: ՚
Java:
char c = '\u055A';
System.out.println(c); // Output: ՚
JSON:
{"text": "\u055A"} // Value: ՚
Python:
char = '\u055A'
print(char) # Output: ՚
Perl:
my $char = "\x{055A}";
print $char; # Output: ՚
PHP:
$char = "\x{055A}";
echo $char; // Output: ՚
Ruby:
char = "\u{055A}"
puts char # Output: ՚
Rust:
let c = '\u{55A}';
println!("{}", c); // Output: ՚
Go:
char := '\u055A'
fmt.Printf("%c\n", char) // Output: ՚
CSS:
/* CSS content property */
.element::before {
content: "\00055A"; /* 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%9A
MD5:
821af6c0669a4459fd4de14edda32cbf
SHA1:
c4229f28e5813d1459168308d68dffa450c29a03
Base64:
1Zo=