Unicode Finder

"퐬" U+D42C(HANGUL SYLLABLE PWAEL)

U+D42C
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE PWAEL

Programming

C
\uD42C
JavaScript
\uD42C
Java
\uD42C
Json
\uD42C
Python
\uD42C
Perl
\x{D42C}
PHP
\x{D42C}
Ruby
\u{D42C}
Rust
\u{D42C}
Go
\uD42C

Web

CSS
\00D42C
HtmlDecimal
퐬
HtmlHexadecimal
퐬
Url
%ED%90%AC

Code

MD5
cb4e94a6a3e3707613285bb5f014e573
Sha1
903926adc04063f6e47a23f40b17b481e03562e0
Base64
7ZCs

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uD42C';
console.log(char);  // Output: 퐬

Java:

char c = '\uD42C';
System.out.println(c);  // Output: 퐬

JSON:

{"text": "\uD42C"}  // Value: 퐬

Python:

char = '\uD42C'
print(char)  # Output: 퐬

Perl:

my $char = "\x{D42C}";
print $char;  # Output: 퐬

PHP:

$char = "\x{D42C}";
echo $char;  // Output: 퐬

Ruby:

char = "\u{D42C}"
puts char  # Output: 퐬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#54316;</p>  <!-- Display: 퐬 -->

HTML Hexadecimal:

<p>HTML hex: &#xD42C;</p>  <!-- Display: 퐬 -->

URL Encoding:

// 퐬 URL encoding
https://unicodefinder.com/search.php?query=%ED%90%AC

Encodings

MD5:

cb4e94a6a3e3707613285bb5f014e573

SHA1:

903926adc04063f6e47a23f40b17b481e03562e0

Base64:

7ZCs