C:
char c = '\u0515';
printf("%c\n", c); // Output: ԕ
JavaScript:
const char = '\u0515';
console.log(char); // Output: ԕ
Java:
char c = '\u0515';
System.out.println(c); // Output: ԕ
JSON:
{"text": "\u0515"} // Value: ԕ
Python:
char = '\u0515'
print(char) # Output: ԕ
Perl:
my $char = "\x{0515}";
print $char; # Output: ԕ
PHP:
$char = "\x{0515}";
echo $char; // Output: ԕ
Ruby:
char = "\u{0515}"
puts char # Output: ԕ
Rust:
let c = '\u{515}';
println!("{}", c); // Output: ԕ
Go:
char := '\u0515'
fmt.Printf("%c\n", char) // Output: ԕ
CSS:
/* CSS content property */
.element::before {
content: "\000515"; /* 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%95
MD5:
b59b9f5df0a6aff1592232c179c5ccf5
SHA1:
f76add284ff6e4f8e3539bd324e46809e1e15ee8
Base64:
1JU=