C:
char c = '\u0580';
printf("%c\n", c); // Output: ր
JavaScript:
const char = '\u0580';
console.log(char); // Output: ր
Java:
char c = '\u0580';
System.out.println(c); // Output: ր
JSON:
{"text": "\u0580"} // Value: ր
Python:
char = '\u0580'
print(char) # Output: ր
Perl:
my $char = "\x{0580}";
print $char; # Output: ր
PHP:
$char = "\x{0580}";
echo $char; // Output: ր
Ruby:
char = "\u{0580}"
puts char # Output: ր
Rust:
let c = '\u{580}';
println!("{}", c); // Output: ր
Go:
char := '\u0580'
fmt.Printf("%c\n", char) // Output: ր
CSS:
/* CSS content property */
.element::before {
content: "\000580"; /* 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=%D6%80
MD5:
8d9987d69d320b81a0f3432f5bcab90a
SHA1:
818395779b9c5a30765f652dfbfdd82a54b61eb7
Base64:
1oA=