C:
char c = '\u0546';
printf("%c\n", c); // Output: Ն
JavaScript:
const char = '\u0546';
console.log(char); // Output: Ն
Java:
char c = '\u0546';
System.out.println(c); // Output: Ն
JSON:
{"text": "\u0546"} // Value: Ն
Python:
char = '\u0546'
print(char) # Output: Ն
Perl:
my $char = "\x{0546}";
print $char; # Output: Ն
PHP:
$char = "\x{0546}";
echo $char; // Output: Ն
Ruby:
char = "\u{0546}"
puts char # Output: Ն
Rust:
let c = '\u{546}';
println!("{}", c); // Output: Ն
Go:
char := '\u0546'
fmt.Printf("%c\n", char) // Output: Ն
CSS:
/* CSS content property */
.element::before {
content: "\000546"; /* 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%86
MD5:
f7b42c1046c0b271671305cde7daba29
SHA1:
4f8f039faef46064b8a66194057356039a89af43
Base64:
1YY=