C:
char c = '\u0461';
printf("%c\n", c); // Output: ѡ
JavaScript:
const char = '\u0461';
console.log(char); // Output: ѡ
Java:
char c = '\u0461';
System.out.println(c); // Output: ѡ
JSON:
{"text": "\u0461"} // Value: ѡ
Python:
char = '\u0461'
print(char) # Output: ѡ
Perl:
my $char = "\x{0461}";
print $char; # Output: ѡ
PHP:
$char = "\x{0461}";
echo $char; // Output: ѡ
Ruby:
char = "\u{0461}"
puts char # Output: ѡ
Rust:
let c = '\u{461}';
println!("{}", c); // Output: ѡ
Go:
char := '\u0461'
fmt.Printf("%c\n", char) // Output: ѡ
CSS:
/* CSS content property */
.element::before {
content: "\000461"; /* 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%A1
MD5:
ab0c3d91d6c61fc07f7a3006b01e12e4
SHA1:
4de42a37949889137495278ea402d7e46bde955e
Base64:
0aE=