Unicode Finder

"Ӈ" U+04C7(CYRILLIC CAPITAL LETTER EN WITH HOOK)

Ӈ
U+04C7
Nome del Blocco
Cyrillic
Nome
CYRILLIC CAPITAL LETTER EN WITH HOOK

Programming

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

Web

CSS
\0004C7
HtmlDecimal
Ӈ
HtmlHexadecimal
Ӈ
Url
%D3%87

Code

MD5
98004814075a1a783f48362c01827de9
Sha1
950cdb6876e38c031968e6e4d982521884885f66
Base64
04c=

Esempi di Utilizzo

Programming Languages

C:

char c = '\u04C7';
printf("%c\n", c);  // Output: Ӈ

JavaScript:

const char = '\u04C7';
console.log(char);  // Output: Ӈ

Java:

char c = '\u04C7';
System.out.println(c);  // Output: Ӈ

JSON:

{"text": "\u04C7"}  // Value: Ӈ

Python:

char = '\u04C7'
print(char)  # Output: Ӈ

Perl:

my $char = "\x{04C7}";
print $char;  # Output: Ӈ

PHP:

$char = "\x{04C7}";
echo $char;  // Output: Ӈ

Ruby:

char = "\u{04C7}"
puts char  # Output: Ӈ

Rust:

let c = '\u{4C7}';
println!("{}", c);  // Output: Ӈ

Go:

char := '\u04C7'
fmt.Printf("%c\n", char)  // Output: Ӈ

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#1223;</p>  <!-- Display: Ӈ -->

HTML Hexadecimal:

<p>HTML hex: &#x04C7;</p>  <!-- Display: Ӈ -->

URL Encoding:

// Ӈ URL encoding
https://unicodefinder.com/search.php?query=%D3%87

Encodings

MD5:

98004814075a1a783f48362c01827de9

SHA1:

950cdb6876e38c031968e6e4d982521884885f66

Base64:

04c=