Unicode Finder

"Ӱ" U+04F0(CYRILLIC CAPITAL LETTER U WITH DIAERESIS)

Ӱ
U+04F0
Block Name
Cyrillic
Name
CYRILLIC CAPITAL LETTER U WITH DIAERESIS

Programming

C
\u04F0
JavaScript
\u04F0
Java
\u04F0
Json
\u04F0
Python
\u04F0
Perl
\x{04F0}
PHP
\x{04F0}
Ruby
\u{04F0}
Rust
\u{4F0}
Go
\u04F0

Web

CSS
\0004F0
HtmlDecimal
Ӱ
HtmlHexadecimal
Ӱ
Url
%D3%B0

Code

MD5
063b261444c1ef20d249887cd8a7c9f4
Sha1
ef755a71d3b951a41ee2fe03249f9f1dca4c73b3
Base64
07A=

Usage Examples

Programming Languages

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: Ӱ

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0004F0";  /* Display: Ӱ */
}

HTML Decimal:

<p>HTML decimal: &#1264;</p>  <!-- Display: Ӱ -->

HTML Hexadecimal:

<p>HTML hex: &#x04F0;</p>  <!-- Display: Ӱ -->

URL Encoding:

// Ӱ URL encoding
https://unicodefinder.com/search.php?query=%D3%B0

Encodings

MD5:

063b261444c1ef20d249887cd8a7c9f4

SHA1:

ef755a71d3b951a41ee2fe03249f9f1dca4c73b3

Base64:

07A=