C:
char c = '\u0543';
printf("%c\n", c); // Output: Ճ
JavaScript:
const char = '\u0543';
console.log(char); // Output: Ճ
Java:
char c = '\u0543';
System.out.println(c); // Output: Ճ
JSON:
{"text": "\u0543"} // Value: Ճ
Python:
char = '\u0543'
print(char) # Output: Ճ
Perl:
my $char = "\x{0543}";
print $char; # Output: Ճ
PHP:
$char = "\x{0543}";
echo $char; // Output: Ճ
Ruby:
char = "\u{0543}"
puts char # Output: Ճ
Rust:
let c = '\u{543}';
println!("{}", c); // Output: Ճ
Go:
char := '\u0543'
fmt.Printf("%c\n", char) // Output: Ճ
CSS:
/* CSS content property */
.element::before {
content: "\000543"; /* 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%83
MD5:
7212bf50c4b761061e742dd9b57158d1
SHA1:
2c4e203ce84d324d79c2f107b3bd50ba87c7f5a6
Base64:
1YM=