Unicode Finder

"ⷦ" U+2DE6(COMBINING CYRILLIC LETTER KA)

U+2DE6
Block Name
Cyrillic Extended-A
Name
COMBINING CYRILLIC LETTER KA

Programming

C
\u2DE6
JavaScript
\u2DE6
Java
\u2DE6
Json
\u2DE6
Python
\u2DE6
Perl
\x{2DE6}
PHP
\x{2DE6}
Ruby
\u{2DE6}
Rust
\u{2DE6}
Go
\u2DE6

Web

CSS
\002DE6
HtmlDecimal
ⷦ
HtmlHexadecimal
ⷦ
Url
%E2%B7%A6

Code

MD5
307aea2f6a83ec38e4e5bbd806373d94
Sha1
462797e8f7c3e76afdc98d2597d9e632150e83ba
Base64
4rem

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2DE6';
console.log(char);  // Output: ⷦ

Java:

char c = '\u2DE6';
System.out.println(c);  // Output: ⷦ

JSON:

{"text": "\u2DE6"}  // Value: ⷦ

Python:

char = '\u2DE6'
print(char)  # Output: ⷦ

Perl:

my $char = "\x{2DE6}";
print $char;  # Output: ⷦ

PHP:

$char = "\x{2DE6}";
echo $char;  // Output: ⷦ

Ruby:

char = "\u{2DE6}"
puts char  # Output: ⷦ

Rust:

let c = '\u{2DE6}';
println!("{}", c);  // Output: ⷦ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002DE6";  /* Display: ⷦ */
}

HTML Decimal:

<p>HTML decimal: &#11750;</p>  <!-- Display: ⷦ -->

HTML Hexadecimal:

<p>HTML hex: &#x2DE6;</p>  <!-- Display: ⷦ -->

URL Encoding:

// ⷦ URL encoding
https://unicodefinder.com/search.php?query=%E2%B7%A6

Encodings

MD5:

307aea2f6a83ec38e4e5bbd806373d94

SHA1:

462797e8f7c3e76afdc98d2597d9e632150e83ba

Base64:

4rem