Unicode Finder

"Ԩ" U+0528(CYRILLIC CAPITAL LETTER EN WITH LEFT HOOK)

Ԩ
U+0528
블록 이름
Cyrillic Supplement
이름
CYRILLIC CAPITAL LETTER EN WITH LEFT HOOK

Programming

C
\u0528
JavaScript
\u0528
Java
\u0528
Json
\u0528
Python
\u0528
Perl
\x{0528}
PHP
\x{0528}
Ruby
\u{0528}
Rust
\u{528}
Go
\u0528

Web

CSS
\000528
HtmlDecimal
Ԩ
HtmlHexadecimal
Ԩ
Url
%D4%A8

Code

MD5
ea01a45f5f48d5fe418ed723dc76c54d
Sha1
fb2f30179b106b0d8e2551a5ac4461c33a9355d3
Base64
1Kg=

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\u0528';
console.log(char);  // Output: Ԩ

Java:

char c = '\u0528';
System.out.println(c);  // Output: Ԩ

JSON:

{"text": "\u0528"}  // Value: Ԩ

Python:

char = '\u0528'
print(char)  # Output: Ԩ

Perl:

my $char = "\x{0528}";
print $char;  # Output: Ԩ

PHP:

$char = "\x{0528}";
echo $char;  // Output: Ԩ

Ruby:

char = "\u{0528}"
puts char  # Output: Ԩ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000528";  /* Display: Ԩ */
}

HTML Decimal:

<p>HTML decimal: &#1320;</p>  <!-- Display: Ԩ -->

HTML Hexadecimal:

<p>HTML hex: &#x0528;</p>  <!-- Display: Ԩ -->

URL Encoding:

// Ԩ URL encoding
https://unicodefinder.com/search.php?query=%D4%A8

Encodings

MD5:

ea01a45f5f48d5fe418ed723dc76c54d

SHA1:

fb2f30179b106b0d8e2551a5ac4461c33a9355d3

Base64:

1Kg=