C:
char c = '\u0403';
printf("%c\n", c); // Output: Ѓ
JavaScript:
const char = '\u0403';
console.log(char); // Output: Ѓ
Java:
char c = '\u0403';
System.out.println(c); // Output: Ѓ
JSON:
{"text": "\u0403"} // Value: Ѓ
Python:
char = '\u0403'
print(char) # Output: Ѓ
Perl:
my $char = "\x{0403}";
print $char; # Output: Ѓ
PHP:
$char = "\x{0403}";
echo $char; // Output: Ѓ
Ruby:
char = "\u{0403}"
puts char # Output: Ѓ
Rust:
let c = '\u{403}';
println!("{}", c); // Output: Ѓ
Go:
char := '\u0403'
fmt.Printf("%c\n", char) // Output: Ѓ
CSS:
/* CSS content property */
.element::before {
content: "\000403"; /* 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%83
MD5:
4974e2825787ef15ed78978aac5d221e
SHA1:
f3d04697f53d373d60b926de87c881c219fea1cb
Base64:
0IM=