Unicode Finder

"Ф" U+0424(CYRILLIC CAPITAL LETTER EF)

Ф
U+0424
Название Блока
Cyrillic
Название
CYRILLIC CAPITAL LETTER EF

Programming

C
\u0424
JavaScript
\u0424
Java
\u0424
Json
\u0424
Python
\u0424
Perl
\x{0424}
PHP
\x{0424}
Ruby
\u{0424}
Rust
\u{424}
Go
\u0424

Web

CSS
\000424
HtmlDecimal
Ф
HtmlHexadecimal
Ф
Url
%D0%A4

Code

MD5
1038077f8f032126024dc5236465850e
Sha1
89606713c32f42c123a9bee6c4cdb7526e8739b5
Base64
0KQ=

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

Programming Languages

C:

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

JavaScript:

const char = '\u0424';
console.log(char);  // Output: Ф

Java:

char c = '\u0424';
System.out.println(c);  // Output: Ф

JSON:

{"text": "\u0424"}  // Value: Ф

Python:

char = '\u0424'
print(char)  # Output: Ф

Perl:

my $char = "\x{0424}";
print $char;  # Output: Ф

PHP:

$char = "\x{0424}";
echo $char;  // Output: Ф

Ruby:

char = "\u{0424}"
puts char  # Output: Ф

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000424";  /* Display: Ф */
}

HTML Decimal:

<p>HTML decimal: &#1060;</p>  <!-- Display: Ф -->

HTML Hexadecimal:

<p>HTML hex: &#x0424;</p>  <!-- Display: Ф -->

URL Encoding:

// Ф URL encoding
https://unicodefinder.com/search.php?query=%D0%A4

Encodings

MD5:

1038077f8f032126024dc5236465850e

SHA1:

89606713c32f42c123a9bee6c4cdb7526e8739b5

Base64:

0KQ=