Unicode Finder

"ퟀ" U+D7C0(HANGUL JUNGSEONG I-YE)

U+D7C0
블록 이름
Hangul Jamo Extended-B
이름
HANGUL JUNGSEONG I-YE

Programming

C
\uD7C0
JavaScript
\uD7C0
Java
\uD7C0
Json
\uD7C0
Python
\uD7C0
Perl
\x{D7C0}
PHP
\x{D7C0}
Ruby
\u{D7C0}
Rust
\u{D7C0}
Go
\uD7C0

Web

CSS
\00D7C0
HtmlDecimal
ퟀ
HtmlHexadecimal
ퟀ
Url
%ED%9F%80

Code

MD5
bee6f01d12bc6725e2ad9c8aee959661
Sha1
256bd086d58078d402ee5f601e1de906bcbbfd35
Base64
7Z+A

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uD7C0';
console.log(char);  // Output: ퟀ

Java:

char c = '\uD7C0';
System.out.println(c);  // Output: ퟀ

JSON:

{"text": "\uD7C0"}  // Value: ퟀ

Python:

char = '\uD7C0'
print(char)  # Output: ퟀ

Perl:

my $char = "\x{D7C0}";
print $char;  # Output: ퟀ

PHP:

$char = "\x{D7C0}";
echo $char;  // Output: ퟀ

Ruby:

char = "\u{D7C0}"
puts char  # Output: ퟀ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#55232;</p>  <!-- Display: ퟀ -->

HTML Hexadecimal:

<p>HTML hex: &#xD7C0;</p>  <!-- Display: ퟀ -->

URL Encoding:

// ퟀ URL encoding
https://unicodefinder.com/search.php?query=%ED%9F%80

Encodings

MD5:

bee6f01d12bc6725e2ad9c8aee959661

SHA1:

256bd086d58078d402ee5f601e1de906bcbbfd35

Base64:

7Z+A