C:
char c = '\u0518';
printf("%c\n", c); // Output: Ԙ
JavaScript:
const char = '\u0518';
console.log(char); // Output: Ԙ
Java:
char c = '\u0518';
System.out.println(c); // Output: Ԙ
JSON:
{"text": "\u0518"} // Value: Ԙ
Python:
char = '\u0518'
print(char) # Output: Ԙ
Perl:
my $char = "\x{0518}";
print $char; # Output: Ԙ
PHP:
$char = "\x{0518}";
echo $char; // Output: Ԙ
Ruby:
char = "\u{0518}"
puts char # Output: Ԙ
Rust:
let c = '\u{518}';
println!("{}", c); // Output: Ԙ
Go:
char := '\u0518'
fmt.Printf("%c\n", char) // Output: Ԙ
CSS:
/* CSS content property */
.element::before {
content: "\000518"; /* 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%98
MD5:
290151ceeeac9330a93999c624db4ee1
SHA1:
904c456f11ee5f4773c4df998a9236300679dac9
Base64:
1Jg=