Unicode Finder

"ퟯ" U+D7EF(HANGUL JONGSEONG SIOS-CIEUC)

U+D7EF
블록 이름
Hangul Jamo Extended-B
이름
HANGUL JONGSEONG SIOS-CIEUC

Programming

C
\uD7EF
JavaScript
\uD7EF
Java
\uD7EF
Json
\uD7EF
Python
\uD7EF
Perl
\x{D7EF}
PHP
\x{D7EF}
Ruby
\u{D7EF}
Rust
\u{D7EF}
Go
\uD7EF

Web

CSS
\00D7EF
HtmlDecimal
ퟯ
HtmlHexadecimal
ퟯ
Url
%ED%9F%AF

Code

MD5
6c2a8170d829b5bd73da2c428fbde9ba
Sha1
d46eba63aa1b50cf39aefc71a63469fd70aad399
Base64
7Z+v

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uD7EF';
console.log(char);  // Output: ퟯ

Java:

char c = '\uD7EF';
System.out.println(c);  // Output: ퟯ

JSON:

{"text": "\uD7EF"}  // Value: ퟯ

Python:

char = '\uD7EF'
print(char)  # Output: ퟯ

Perl:

my $char = "\x{D7EF}";
print $char;  # Output: ퟯ

PHP:

$char = "\x{D7EF}";
echo $char;  // Output: ퟯ

Ruby:

char = "\u{D7EF}"
puts char  # Output: ퟯ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#55279;</p>  <!-- Display: ퟯ -->

HTML Hexadecimal:

<p>HTML hex: &#xD7EF;</p>  <!-- Display: ퟯ -->

URL Encoding:

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

Encodings

MD5:

6c2a8170d829b5bd73da2c428fbde9ba

SHA1:

d46eba63aa1b50cf39aefc71a63469fd70aad399

Base64:

7Z+v