C:
char c = '\u0479';
printf("%c\n", c); // Output: ѹ
JavaScript:
const char = '\u0479';
console.log(char); // Output: ѹ
Java:
char c = '\u0479';
System.out.println(c); // Output: ѹ
JSON:
{"text": "\u0479"} // Value: ѹ
Python:
char = '\u0479'
print(char) # Output: ѹ
Perl:
my $char = "\x{0479}";
print $char; # Output: ѹ
PHP:
$char = "\x{0479}";
echo $char; // Output: ѹ
Ruby:
char = "\u{0479}"
puts char # Output: ѹ
Rust:
let c = '\u{479}';
println!("{}", c); // Output: ѹ
Go:
char := '\u0479'
fmt.Printf("%c\n", char) // Output: ѹ
CSS:
/* CSS content property */
.element::before {
content: "\000479"; /* 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%B9
MD5:
cd25dd02d6aa731bba39be9f34a6120f
SHA1:
df6ff7ba1a5614232cc31f64deb22f996c35c12f
Base64:
0bk=