C:
char c = '\u0584';
printf("%c\n", c); // Output: ք
JavaScript:
const char = '\u0584';
console.log(char); // Output: ք
Java:
char c = '\u0584';
System.out.println(c); // Output: ք
JSON:
{"text": "\u0584"} // Value: ք
Python:
char = '\u0584'
print(char) # Output: ք
Perl:
my $char = "\x{0584}";
print $char; # Output: ք
PHP:
$char = "\x{0584}";
echo $char; // Output: ք
Ruby:
char = "\u{0584}"
puts char # Output: ք
Rust:
let c = '\u{584}';
println!("{}", c); // Output: ք
Go:
char := '\u0584'
fmt.Printf("%c\n", char) // Output: ք
CSS:
/* CSS content property */
.element::before {
content: "\000584"; /* 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%84
MD5:
29ffff51fd2da233b93d0a73e930c07b
SHA1:
ce7f3140d3c067c96a92eade15a4a8989da807f4
Base64:
1oQ=