C:
char c = '\u0573';
printf("%c\n", c); // Output: ճ
JavaScript:
const char = '\u0573';
console.log(char); // Output: ճ
Java:
char c = '\u0573';
System.out.println(c); // Output: ճ
JSON:
{"text": "\u0573"} // Value: ճ
Python:
char = '\u0573'
print(char) # Output: ճ
Perl:
my $char = "\x{0573}";
print $char; # Output: ճ
PHP:
$char = "\x{0573}";
echo $char; // Output: ճ
Ruby:
char = "\u{0573}"
puts char # Output: ճ
Rust:
let c = '\u{573}';
println!("{}", c); // Output: ճ
Go:
char := '\u0573'
fmt.Printf("%c\n", char) // Output: ճ
CSS:
/* CSS content property */
.element::before {
content: "\000573"; /* 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%B3
MD5:
c06c3627b194ab467b6cab233be96ed1
SHA1:
7ab32313262f4fe28e8fdb6a2db071ae97ee77b7
Base64:
1bM=