C:
char c = '\u0547';
printf("%c\n", c); // Output: Շ
JavaScript:
const char = '\u0547';
console.log(char); // Output: Շ
Java:
char c = '\u0547';
System.out.println(c); // Output: Շ
JSON:
{"text": "\u0547"} // Value: Շ
Python:
char = '\u0547'
print(char) # Output: Շ
Perl:
my $char = "\x{0547}";
print $char; # Output: Շ
PHP:
$char = "\x{0547}";
echo $char; // Output: Շ
Ruby:
char = "\u{0547}"
puts char # Output: Շ
Rust:
let c = '\u{547}';
println!("{}", c); // Output: Շ
Go:
char := '\u0547'
fmt.Printf("%c\n", char) // Output: Շ
CSS:
/* CSS content property */
.element::before {
content: "\000547"; /* 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%87
MD5:
80b6dfaa9d3d0aa961ebf1430cea359d
SHA1:
84127e33e1d699649557741c52db48d4bb844313
Base64:
1Yc=