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