C:
char c = '\u0513';
printf("%c\n", c); // Output: ԓ
JavaScript:
const char = '\u0513';
console.log(char); // Output: ԓ
Java:
char c = '\u0513';
System.out.println(c); // Output: ԓ
JSON:
{"text": "\u0513"} // Value: ԓ
Python:
char = '\u0513'
print(char) # Output: ԓ
Perl:
my $char = "\x{0513}";
print $char; # Output: ԓ
PHP:
$char = "\x{0513}";
echo $char; // Output: ԓ
Ruby:
char = "\u{0513}"
puts char # Output: ԓ
Rust:
let c = '\u{513}';
println!("{}", c); // Output: ԓ
Go:
char := '\u0513'
fmt.Printf("%c\n", char) // Output: ԓ
CSS:
/* CSS content property */
.element::before {
content: "\000513"; /* 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%93
MD5:
dbf87d9247988de8cc5d29cc3d6640c1
SHA1:
5d4a47dbb325cd5c930a42f76420c5032f6a4890
Base64:
1JM=