C:
char c = '\u0470';
printf("%c\n", c); // Output: Ѱ
JavaScript:
const char = '\u0470';
console.log(char); // Output: Ѱ
Java:
char c = '\u0470';
System.out.println(c); // Output: Ѱ
JSON:
{"text": "\u0470"} // Value: Ѱ
Python:
char = '\u0470'
print(char) # Output: Ѱ
Perl:
my $char = "\x{0470}";
print $char; # Output: Ѱ
PHP:
$char = "\x{0470}";
echo $char; // Output: Ѱ
Ruby:
char = "\u{0470}"
puts char # Output: Ѱ
Rust:
let c = '\u{470}';
println!("{}", c); // Output: Ѱ
Go:
char := '\u0470'
fmt.Printf("%c\n", char) // Output: Ѱ
CSS:
/* CSS content property */
.element::before {
content: "\000470"; /* 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%B0
MD5:
53f0b797ed447a079ecedf04fbbc306c
SHA1:
c7330fefadbaa3800a2996b316d5903a31f2cfcb
Base64:
0bA=