C:
char c = '\u0467';
printf("%c\n", c); // Output: ѧ
JavaScript:
const char = '\u0467';
console.log(char); // Output: ѧ
Java:
char c = '\u0467';
System.out.println(c); // Output: ѧ
JSON:
{"text": "\u0467"} // Value: ѧ
Python:
char = '\u0467'
print(char) # Output: ѧ
Perl:
my $char = "\x{0467}";
print $char; # Output: ѧ
PHP:
$char = "\x{0467}";
echo $char; // Output: ѧ
Ruby:
char = "\u{0467}"
puts char # Output: ѧ
Rust:
let c = '\u{467}';
println!("{}", c); // Output: ѧ
Go:
char := '\u0467'
fmt.Printf("%c\n", char) // Output: ѧ
CSS:
/* CSS content property */
.element::before {
content: "\000467"; /* 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%A7
MD5:
a9a23f0b76e4ac393e5225ab866cf564
SHA1:
9f42b79ce1b766ca239ea313d50b9a10b8f7987b
Base64:
0ac=