C:
char c = '\u04F0';
printf("%c\n", c); // Output: Ӱ
JavaScript:
const char = '\u04F0';
console.log(char); // Output: Ӱ
Java:
char c = '\u04F0';
System.out.println(c); // Output: Ӱ
JSON:
{"text": "\u04F0"} // Value: Ӱ
Python:
char = '\u04F0'
print(char) # Output: Ӱ
Perl:
my $char = "\x{04F0}";
print $char; # Output: Ӱ
PHP:
$char = "\x{04F0}";
echo $char; // Output: Ӱ
Ruby:
char = "\u{04F0}"
puts char # Output: Ӱ
Rust:
let c = '\u{4F0}';
println!("{}", c); // Output: Ӱ
Go:
char := '\u04F0'
fmt.Printf("%c\n", char) // Output: Ӱ
CSS:
/* CSS content property */
.element::before {
content: "\0004F0"; /* 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=%D3%B0
MD5:
063b261444c1ef20d249887cd8a7c9f4
SHA1:
ef755a71d3b951a41ee2fe03249f9f1dca4c73b3
Base64:
07A=