Unicode Finder

"Ѷ" U+0476(CYRILLIC CAPITAL LETTER IZHITSA WITH DOUBLE GRAVE ACCENT)

Ѷ
U+0476
Назва Блоку
Cyrillic
Назва
CYRILLIC CAPITAL LETTER IZHITSA WITH DOUBLE GRAVE ACCENT

Programming

C
\u0476
JavaScript
\u0476
Java
\u0476
Json
\u0476
Python
\u0476
Perl
\x{0476}
PHP
\x{0476}
Ruby
\u{0476}
Rust
\u{476}
Go
\u0476

Web

CSS
\000476
HtmlDecimal
Ѷ
HtmlHexadecimal
Ѷ
Url
%D1%B6

Code

MD5
efc807fb2c1b9baac260eac53a226497
Sha1
da08885c12b992fb2d83645c0adf5c376e9c88f1
Base64
0bY=

Приклади Використання

Programming Languages

C:

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

JavaScript:

const char = '\u0476';
console.log(char);  // Output: Ѷ

Java:

char c = '\u0476';
System.out.println(c);  // Output: Ѷ

JSON:

{"text": "\u0476"}  // Value: Ѷ

Python:

char = '\u0476'
print(char)  # Output: Ѷ

Perl:

my $char = "\x{0476}";
print $char;  # Output: Ѷ

PHP:

$char = "\x{0476}";
echo $char;  // Output: Ѷ

Ruby:

char = "\u{0476}"
puts char  # Output: Ѷ

Rust:

let c = '\u{476}';
println!("{}", c);  // Output: Ѷ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000476";  /* Display: Ѷ */
}

HTML Decimal:

<p>HTML decimal: &#1142;</p>  <!-- Display: Ѷ -->

HTML Hexadecimal:

<p>HTML hex: &#x0476;</p>  <!-- Display: Ѷ -->

URL Encoding:

// Ѷ URL encoding
https://unicodefinder.com/search.php?query=%D1%B6

Encodings

MD5:

efc807fb2c1b9baac260eac53a226497

SHA1:

da08885c12b992fb2d83645c0adf5c376e9c88f1

Base64:

0bY=