C:
char c = '\u0523';
printf("%c\n", c); // Output: ԣ
JavaScript:
const char = '\u0523';
console.log(char); // Output: ԣ
Java:
char c = '\u0523';
System.out.println(c); // Output: ԣ
JSON:
{"text": "\u0523"} // Value: ԣ
Python:
char = '\u0523'
print(char) # Output: ԣ
Perl:
my $char = "\x{0523}";
print $char; # Output: ԣ
PHP:
$char = "\x{0523}";
echo $char; // Output: ԣ
Ruby:
char = "\u{0523}"
puts char # Output: ԣ
Rust:
let c = '\u{523}';
println!("{}", c); // Output: ԣ
Go:
char := '\u0523'
fmt.Printf("%c\n", char) // Output: ԣ
CSS:
/* CSS content property */
.element::before {
content: "\000523"; /* 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=%D4%A3
MD5:
64dee10858cc3e11d96e23d3aa242e8d
SHA1:
9f146d717ba4b7a9faa45d8368757363cd3b85d4
Base64:
1KM=