C:
char c = '\u0508';
printf("%c\n", c); // Output: Ԉ
JavaScript:
const char = '\u0508';
console.log(char); // Output: Ԉ
Java:
char c = '\u0508';
System.out.println(c); // Output: Ԉ
JSON:
{"text": "\u0508"} // Value: Ԉ
Python:
char = '\u0508'
print(char) # Output: Ԉ
Perl:
my $char = "\x{0508}";
print $char; # Output: Ԉ
PHP:
$char = "\x{0508}";
echo $char; // Output: Ԉ
Ruby:
char = "\u{0508}"
puts char # Output: Ԉ
Rust:
let c = '\u{508}';
println!("{}", c); // Output: Ԉ
Go:
char := '\u0508'
fmt.Printf("%c\n", char) // Output: Ԉ
CSS:
/* CSS content property */
.element::before {
content: "\000508"; /* 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%88
MD5:
8afe0e5c703d29aa68f11de2aaee8652
SHA1:
9155d045a91cf53cc9dc73400467a033429e1dfb
Base64:
1Ig=