C:
char c = '\u0501';
printf("%c\n", c); // Output: ԁ
JavaScript:
const char = '\u0501';
console.log(char); // Output: ԁ
Java:
char c = '\u0501';
System.out.println(c); // Output: ԁ
JSON:
{"text": "\u0501"} // Value: ԁ
Python:
char = '\u0501'
print(char) # Output: ԁ
Perl:
my $char = "\x{0501}";
print $char; # Output: ԁ
PHP:
$char = "\x{0501}";
echo $char; // Output: ԁ
Ruby:
char = "\u{0501}"
puts char # Output: ԁ
Rust:
let c = '\u{501}';
println!("{}", c); // Output: ԁ
Go:
char := '\u0501'
fmt.Printf("%c\n", char) // Output: ԁ
CSS:
/* CSS content property */
.element::before {
content: "\000501"; /* 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%81
MD5:
a431f709143184c9ffaaec2d30ab441a
SHA1:
61be5d756229d710b5eec9a58679c801bd738e2f
Base64:
1IE=