C:
char c = '\u055B';
printf("%c\n", c); // Output: ՛
JavaScript:
const char = '\u055B';
console.log(char); // Output: ՛
Java:
char c = '\u055B';
System.out.println(c); // Output: ՛
JSON:
{"text": "\u055B"} // Value: ՛
Python:
char = '\u055B'
print(char) # Output: ՛
Perl:
my $char = "\x{055B}";
print $char; # Output: ՛
PHP:
$char = "\x{055B}";
echo $char; // Output: ՛
Ruby:
char = "\u{055B}"
puts char # Output: ՛
Rust:
let c = '\u{55B}';
println!("{}", c); // Output: ՛
Go:
char := '\u055B'
fmt.Printf("%c\n", char) // Output: ՛
CSS:
/* CSS content property */
.element::before {
content: "\00055B"; /* 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%9B
MD5:
9988e4c30a9a3ba6d51b3be913385744
SHA1:
0ba92a93ed6ad92e926960bddd5875e70cd4e585
Base64:
1Zs=