Unicode Finder

"ퟋ" U+D7CB(HANGUL JONGSEONG NIEUN-RIEUL)

U+D7CB
블록 이름
Hangul Jamo Extended-B
이름
HANGUL JONGSEONG NIEUN-RIEUL

Programming

C
\uD7CB
JavaScript
\uD7CB
Java
\uD7CB
Json
\uD7CB
Python
\uD7CB
Perl
\x{D7CB}
PHP
\x{D7CB}
Ruby
\u{D7CB}
Rust
\u{D7CB}
Go
\uD7CB

Web

CSS
\00D7CB
HtmlDecimal
ퟋ
HtmlHexadecimal
ퟋ
Url
%ED%9F%8B

Code

MD5
4dfea387ee0bed9c7a927ac13dff0612
Sha1
40a9422def3088b5652b0a5227e9767d166b4693
Base64
7Z+L

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uD7CB';
console.log(char);  // Output: ퟋ

Java:

char c = '\uD7CB';
System.out.println(c);  // Output: ퟋ

JSON:

{"text": "\uD7CB"}  // Value: ퟋ

Python:

char = '\uD7CB'
print(char)  # Output: ퟋ

Perl:

my $char = "\x{D7CB}";
print $char;  # Output: ퟋ

PHP:

$char = "\x{D7CB}";
echo $char;  // Output: ퟋ

Ruby:

char = "\u{D7CB}"
puts char  # Output: ퟋ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00D7CB";  /* Display: ퟋ */
}

HTML Decimal:

<p>HTML decimal: &#55243;</p>  <!-- Display: ퟋ -->

HTML Hexadecimal:

<p>HTML hex: &#xD7CB;</p>  <!-- Display: ퟋ -->

URL Encoding:

// ퟋ URL encoding
https://unicodefinder.com/search.php?query=%ED%9F%8B

Encodings

MD5:

4dfea387ee0bed9c7a927ac13dff0612

SHA1:

40a9422def3088b5652b0a5227e9767d166b4693

Base64:

7Z+L