Unicode Finder

"Ѵ" U+0474(CYRILLIC CAPITAL LETTER IZHITSA)

Ѵ
U+0474
Назва Блоку
Cyrillic
Назва
CYRILLIC CAPITAL LETTER IZHITSA

Programming

C
\u0474
JavaScript
\u0474
Java
\u0474
Json
\u0474
Python
\u0474
Perl
\x{0474}
PHP
\x{0474}
Ruby
\u{0474}
Rust
\u{474}
Go
\u0474

Web

CSS
\000474
HtmlDecimal
Ѵ
HtmlHexadecimal
Ѵ
Url
%D1%B4

Code

MD5
515e74118452d9499de49599152b83eb
Sha1
28c338b217227f22d55af01876018195476e2171
Base64
0bQ=

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

Programming Languages

C:

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

JavaScript:

const char = '\u0474';
console.log(char);  // Output: Ѵ

Java:

char c = '\u0474';
System.out.println(c);  // Output: Ѵ

JSON:

{"text": "\u0474"}  // Value: Ѵ

Python:

char = '\u0474'
print(char)  # Output: Ѵ

Perl:

my $char = "\x{0474}";
print $char;  # Output: Ѵ

PHP:

$char = "\x{0474}";
echo $char;  // Output: Ѵ

Ruby:

char = "\u{0474}"
puts char  # Output: Ѵ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000474";  /* Display: Ѵ */
}

HTML Decimal:

<p>HTML decimal: &#1140;</p>  <!-- Display: Ѵ -->

HTML Hexadecimal:

<p>HTML hex: &#x0474;</p>  <!-- Display: Ѵ -->

URL Encoding:

// Ѵ URL encoding
https://unicodefinder.com/search.php?query=%D1%B4

Encodings

MD5:

515e74118452d9499de49599152b83eb

SHA1:

28c338b217227f22d55af01876018195476e2171

Base64:

0bQ=