C:
char c = '\u0400';
printf("%c\n", c); // Output: Ѐ
JavaScript:
const char = '\u0400';
console.log(char); // Output: Ѐ
Java:
char c = '\u0400';
System.out.println(c); // Output: Ѐ
JSON:
{"text": "\u0400"} // Value: Ѐ
Python:
char = '\u0400'
print(char) # Output: Ѐ
Perl:
my $char = "\x{0400}";
print $char; # Output: Ѐ
PHP:
$char = "\x{0400}";
echo $char; // Output: Ѐ
Ruby:
char = "\u{0400}"
puts char # Output: Ѐ
Rust:
let c = '\u{400}';
println!("{}", c); // Output: Ѐ
Go:
char := '\u0400'
fmt.Printf("%c\n", char) // Output: Ѐ
CSS:
/* CSS content property */
.element::before {
content: "\000400"; /* 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=%D0%80
MD5:
b7bed5e67181556c1e8e18ad3a95542c
SHA1:
c3e928b89c146a3935131ca8a7c6d825124feee3
Base64:
0IA=