C:
char c = '\u0574';
printf("%c\n", c); // Output: մ
JavaScript:
const char = '\u0574';
console.log(char); // Output: մ
Java:
char c = '\u0574';
System.out.println(c); // Output: մ
JSON:
{"text": "\u0574"} // Value: մ
Python:
char = '\u0574'
print(char) # Output: մ
Perl:
my $char = "\x{0574}";
print $char; # Output: մ
PHP:
$char = "\x{0574}";
echo $char; // Output: մ
Ruby:
char = "\u{0574}"
puts char # Output: մ
Rust:
let c = '\u{574}';
println!("{}", c); // Output: մ
Go:
char := '\u0574'
fmt.Printf("%c\n", char) // Output: մ
CSS:
/* CSS content property */
.element::before {
content: "\000574"; /* 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%B4
MD5:
93520c5ee062ec0d824b75652424f993
SHA1:
0710befa2b240e0827d01e05c156785d27082b8e
Base64:
1bQ=