C:
char c = '\u0576';
printf("%c\n", c); // Output: ն
JavaScript:
const char = '\u0576';
console.log(char); // Output: ն
Java:
char c = '\u0576';
System.out.println(c); // Output: ն
JSON:
{"text": "\u0576"} // Value: ն
Python:
char = '\u0576'
print(char) # Output: ն
Perl:
my $char = "\x{0576}";
print $char; # Output: ն
PHP:
$char = "\x{0576}";
echo $char; // Output: ն
Ruby:
char = "\u{0576}"
puts char # Output: ն
Rust:
let c = '\u{576}';
println!("{}", c); // Output: ն
Go:
char := '\u0576'
fmt.Printf("%c\n", char) // Output: ն
CSS:
/* CSS content property */
.element::before {
content: "\000576"; /* 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%B6
MD5:
5269a166128b8cd4649b5e0c31cc4fac
SHA1:
4f98c8a2f5f7745f630d872ec2541502bd2c9384
Base64:
1bY=