Unicode Finder

"폌" U+D3CC(HANGUL SYLLABLE PYEOK)

U+D3CC
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE PYEOK

Programming

C
\uD3CC
JavaScript
\uD3CC
Java
\uD3CC
Json
\uD3CC
Python
\uD3CC
Perl
\x{D3CC}
PHP
\x{D3CC}
Ruby
\u{D3CC}
Rust
\u{D3CC}
Go
\uD3CC

Web

CSS
\00D3CC
HtmlDecimal
폌
HtmlHexadecimal
폌
Url
%ED%8F%8C

Code

MD5
82d2c883c275ee54222474cd55cad014
Sha1
c057f79ca364ee958faa83618126c23f54c55507
Base64
7Y+M

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uD3CC';
console.log(char);  // Output: 폌

Java:

char c = '\uD3CC';
System.out.println(c);  // Output: 폌

JSON:

{"text": "\uD3CC"}  // Value: 폌

Python:

char = '\uD3CC'
print(char)  # Output: 폌

Perl:

my $char = "\x{D3CC}";
print $char;  # Output: 폌

PHP:

$char = "\x{D3CC}";
echo $char;  // Output: 폌

Ruby:

char = "\u{D3CC}"
puts char  # Output: 폌

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#54220;</p>  <!-- Display: 폌 -->

HTML Hexadecimal:

<p>HTML hex: &#xD3CC;</p>  <!-- Display: 폌 -->

URL Encoding:

// 폌 URL encoding
https://unicodefinder.com/search.php?query=%ED%8F%8C

Encodings

MD5:

82d2c883c275ee54222474cd55cad014

SHA1:

c057f79ca364ee958faa83618126c23f54c55507

Base64:

7Y+M