Unicode Finder

"В" U+0412(CYRILLIC CAPITAL LETTER VE)

В
U+0412
Название Блока
Cyrillic
Название
CYRILLIC CAPITAL LETTER VE

Programming

C
\u0412
JavaScript
\u0412
Java
\u0412
Json
\u0412
Python
\u0412
Perl
\x{0412}
PHP
\x{0412}
Ruby
\u{0412}
Rust
\u{412}
Go
\u0412

Web

CSS
\000412
HtmlDecimal
В
HtmlHexadecimal
В
Url
%D0%92

Code

MD5
aee26eef8e5cccffba1091b226674940
Sha1
b25cd718340a88fec094ab8c5fe7fcaef55a1d92
Base64
0JI=

Примеры Использования

Programming Languages

C:

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

JavaScript:

const char = '\u0412';
console.log(char);  // Output: В

Java:

char c = '\u0412';
System.out.println(c);  // Output: В

JSON:

{"text": "\u0412"}  // Value: В

Python:

char = '\u0412'
print(char)  # Output: В

Perl:

my $char = "\x{0412}";
print $char;  # Output: В

PHP:

$char = "\x{0412}";
echo $char;  // Output: В

Ruby:

char = "\u{0412}"
puts char  # Output: В

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000412";  /* Display: В */
}

HTML Decimal:

<p>HTML decimal: &#1042;</p>  <!-- Display: В -->

HTML Hexadecimal:

<p>HTML hex: &#x0412;</p>  <!-- Display: В -->

URL Encoding:

// В URL encoding
https://unicodefinder.com/search.php?query=%D0%92

Encodings

MD5:

aee26eef8e5cccffba1091b226674940

SHA1:

b25cd718340a88fec094ab8c5fe7fcaef55a1d92

Base64:

0JI=