C:
char c = '\u0550';
printf("%c\n", c); // Output: Ր
JavaScript:
const char = '\u0550';
console.log(char); // Output: Ր
Java:
char c = '\u0550';
System.out.println(c); // Output: Ր
JSON:
{"text": "\u0550"} // Value: Ր
Python:
char = '\u0550'
print(char) # Output: Ր
Perl:
my $char = "\x{0550}";
print $char; # Output: Ր
PHP:
$char = "\x{0550}";
echo $char; // Output: Ր
Ruby:
char = "\u{0550}"
puts char # Output: Ր
Rust:
let c = '\u{550}';
println!("{}", c); // Output: Ր
Go:
char := '\u0550'
fmt.Printf("%c\n", char) // Output: Ր
CSS:
/* CSS content property */
.element::before {
content: "\000550"; /* 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%90
MD5:
bdce3ffd0c8768381ac7ebc79b5408e4
SHA1:
3fd3233f55abffc8601fe92feb3d67af0c0186eb
Base64:
1ZA=