C:
char c = '\u0450';
printf("%c\n", c); // Output: ѐ
JavaScript:
const char = '\u0450';
console.log(char); // Output: ѐ
Java:
char c = '\u0450';
System.out.println(c); // Output: ѐ
JSON:
{"text": "\u0450"} // Value: ѐ
Python:
char = '\u0450'
print(char) # Output: ѐ
Perl:
my $char = "\x{0450}";
print $char; # Output: ѐ
PHP:
$char = "\x{0450}";
echo $char; // Output: ѐ
Ruby:
char = "\u{0450}"
puts char # Output: ѐ
Rust:
let c = '\u{450}';
println!("{}", c); // Output: ѐ
Go:
char := '\u0450'
fmt.Printf("%c\n", char) // Output: ѐ
CSS:
/* CSS content property */
.element::before {
content: "\000450"; /* 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%90
MD5:
0323e9a7847065332d1b9b9d1f780d50
SHA1:
4166d19ab978b0eb6e027997df631c19c2459447
Base64:
0ZA=