Unicode Finder

"ѣ" U+0463(CYRILLIC SMALL LETTER YAT)

ѣ
U+0463
Название Блока
Cyrillic
Название
CYRILLIC SMALL LETTER YAT

Programming

C
\u0463
JavaScript
\u0463
Java
\u0463
Json
\u0463
Python
\u0463
Perl
\x{0463}
PHP
\x{0463}
Ruby
\u{0463}
Rust
\u{463}
Go
\u0463

Web

CSS
\000463
HtmlDecimal
ѣ
HtmlHexadecimal
ѣ
Url
%D1%A3

Code

MD5
d4b98a1808883ce8ffa3cb7c081c88c8
Sha1
ab888755972a4e8507f1325f0165132b8dda7297
Base64
0aM=

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

Programming Languages

C:

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

JavaScript:

const char = '\u0463';
console.log(char);  // Output: ѣ

Java:

char c = '\u0463';
System.out.println(c);  // Output: ѣ

JSON:

{"text": "\u0463"}  // Value: ѣ

Python:

char = '\u0463'
print(char)  # Output: ѣ

Perl:

my $char = "\x{0463}";
print $char;  # Output: ѣ

PHP:

$char = "\x{0463}";
echo $char;  // Output: ѣ

Ruby:

char = "\u{0463}"
puts char  # Output: ѣ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000463";  /* Display: ѣ */
}

HTML Decimal:

<p>HTML decimal: &#1123;</p>  <!-- Display: ѣ -->

HTML Hexadecimal:

<p>HTML hex: &#x0463;</p>  <!-- Display: ѣ -->

URL Encoding:

// ѣ URL encoding
https://unicodefinder.com/search.php?query=%D1%A3

Encodings

MD5:

d4b98a1808883ce8ffa3cb7c081c88c8

SHA1:

ab888755972a4e8507f1325f0165132b8dda7297

Base64:

0aM=