C:
char c = '\u0551';
printf("%c\n", c); // Output: Ց
JavaScript:
const char = '\u0551';
console.log(char); // Output: Ց
Java:
char c = '\u0551';
System.out.println(c); // Output: Ց
JSON:
{"text": "\u0551"} // Value: Ց
Python:
char = '\u0551'
print(char) # Output: Ց
Perl:
my $char = "\x{0551}";
print $char; # Output: Ց
PHP:
$char = "\x{0551}";
echo $char; // Output: Ց
Ruby:
char = "\u{0551}"
puts char # Output: Ց
Rust:
let c = '\u{551}';
println!("{}", c); // Output: Ց
Go:
char := '\u0551'
fmt.Printf("%c\n", char) // Output: Ց
CSS:
/* CSS content property */
.element::before {
content: "\000551"; /* 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%91
MD5:
647a22879169e9809a0935e79f6ad826
SHA1:
154e09f1c2ccccac6e051ec3fed6b0cbd2575cfb
Base64:
1ZE=