C:
char c = '\u0462';
printf("%c\n", c); // Output: Ѣ
JavaScript:
const char = '\u0462';
console.log(char); // Output: Ѣ
Java:
char c = '\u0462';
System.out.println(c); // Output: Ѣ
JSON:
{"text": "\u0462"} // Value: Ѣ
Python:
char = '\u0462'
print(char) # Output: Ѣ
Perl:
my $char = "\x{0462}";
print $char; # Output: Ѣ
PHP:
$char = "\x{0462}";
echo $char; // Output: Ѣ
Ruby:
char = "\u{0462}"
puts char # Output: Ѣ
Rust:
let c = '\u{462}';
println!("{}", c); // Output: Ѣ
Go:
char := '\u0462'
fmt.Printf("%c\n", char) // Output: Ѣ
CSS:
/* CSS content property */
.element::before {
content: "\000462"; /* 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=%D1%A2
MD5:
e31ddd7ff5f4f546554f37f9d179b5a1
SHA1:
a44ee3a9911620a1ecda0b183fac0d1b729d7eff
Base64:
0aI=