Unicode Finder

"Ѹ" U+0478(CYRILLIC CAPITAL LETTER UK)

Ѹ
U+0478
Название Блока
Cyrillic
Название
CYRILLIC CAPITAL LETTER UK

Programming

C
\u0478
JavaScript
\u0478
Java
\u0478
Json
\u0478
Python
\u0478
Perl
\x{0478}
PHP
\x{0478}
Ruby
\u{0478}
Rust
\u{478}
Go
\u0478

Web

CSS
\000478
HtmlDecimal
Ѹ
HtmlHexadecimal
Ѹ
Url
%D1%B8

Code

MD5
59a24365855086c596c7b1094f0bd651
Sha1
6f52618b284272955eaaea1c5cdcdd5f5dd2a577
Base64
0bg=

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

Programming Languages

C:

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

JavaScript:

const char = '\u0478';
console.log(char);  // Output: Ѹ

Java:

char c = '\u0478';
System.out.println(c);  // Output: Ѹ

JSON:

{"text": "\u0478"}  // Value: Ѹ

Python:

char = '\u0478'
print(char)  # Output: Ѹ

Perl:

my $char = "\x{0478}";
print $char;  # Output: Ѹ

PHP:

$char = "\x{0478}";
echo $char;  // Output: Ѹ

Ruby:

char = "\u{0478}"
puts char  # Output: Ѹ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000478";  /* Display: Ѹ */
}

HTML Decimal:

<p>HTML decimal: &#1144;</p>  <!-- Display: Ѹ -->

HTML Hexadecimal:

<p>HTML hex: &#x0478;</p>  <!-- Display: Ѹ -->

URL Encoding:

// Ѹ URL encoding
https://unicodefinder.com/search.php?query=%D1%B8

Encodings

MD5:

59a24365855086c596c7b1094f0bd651

SHA1:

6f52618b284272955eaaea1c5cdcdd5f5dd2a577

Base64:

0bg=