C:
char c = '\u0503';
printf("%c\n", c); // Output: ԃ
JavaScript:
const char = '\u0503';
console.log(char); // Output: ԃ
Java:
char c = '\u0503';
System.out.println(c); // Output: ԃ
JSON:
{"text": "\u0503"} // Value: ԃ
Python:
char = '\u0503'
print(char) # Output: ԃ
Perl:
my $char = "\x{0503}";
print $char; # Output: ԃ
PHP:
$char = "\x{0503}";
echo $char; // Output: ԃ
Ruby:
char = "\u{0503}"
puts char # Output: ԃ
Rust:
let c = '\u{503}';
println!("{}", c); // Output: ԃ
Go:
char := '\u0503'
fmt.Printf("%c\n", char) // Output: ԃ
CSS:
/* CSS content property */
.element::before {
content: "\000503"; /* 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%83
MD5:
510304035336f6ae0f03c54bba3368c3
SHA1:
58f5363f6b04b0971c31335cd654387d12986863
Base64:
1IM=