C:
char c = '\u0469';
printf("%c\n", c); // Output: ѩ
JavaScript:
const char = '\u0469';
console.log(char); // Output: ѩ
Java:
char c = '\u0469';
System.out.println(c); // Output: ѩ
JSON:
{"text": "\u0469"} // Value: ѩ
Python:
char = '\u0469'
print(char) # Output: ѩ
Perl:
my $char = "\x{0469}";
print $char; # Output: ѩ
PHP:
$char = "\x{0469}";
echo $char; // Output: ѩ
Ruby:
char = "\u{0469}"
puts char # Output: ѩ
Rust:
let c = '\u{469}';
println!("{}", c); // Output: ѩ
Go:
char := '\u0469'
fmt.Printf("%c\n", char) // Output: ѩ
CSS:
/* CSS content property */
.element::before {
content: "\000469"; /* 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%A9
MD5:
ae621993e79ac62af4998cb3ab719186
SHA1:
a975a19491f7b7aebb9babd1d090ee89d041551f
Base64:
0ak=