C:
char c = '\u0463';
printf("%c\n", c); // Output: ѣ
JavaScript:
const char = '\u0463';
console.log(char); // Output: ѣ
Java:
char c = '\u0463';
System.out.println(c); // Output: ѣ
JSON:
{"text": "\u0463"} // Value: ѣ
Python:
char = '\u0463'
print(char) # Output: ѣ
Perl:
my $char = "\x{0463}";
print $char; # Output: ѣ
PHP:
$char = "\x{0463}";
echo $char; // Output: ѣ
Ruby:
char = "\u{0463}"
puts char # Output: ѣ
Rust:
let c = '\u{463}';
println!("{}", c); // Output: ѣ
Go:
char := '\u0463'
fmt.Printf("%c\n", char) // Output: ѣ
CSS:
/* CSS content property */
.element::before {
content: "\000463"; /* 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%A3
MD5:
d4b98a1808883ce8ffa3cb7c081c88c8
SHA1:
ab888755972a4e8507f1325f0165132b8dda7297
Base64:
0aM=