Unicode Finder

"슌" U+C28C(HANGUL SYLLABLE SYUN)

U+C28C
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SYUN

Programming

C
\uC28C
JavaScript
\uC28C
Java
\uC28C
Json
\uC28C
Python
\uC28C
Perl
\x{C28C}
PHP
\x{C28C}
Ruby
\u{C28C}
Rust
\u{C28C}
Go
\uC28C

Web

CSS
\00C28C
HtmlDecimal
슌
HtmlHexadecimal
슌
Url
%EC%8A%8C

Code

MD5
0c456e614a43fae8b6f98e58bff74906
Sha1
726a08c38661cdde33534f5d8218e689443897b8
Base64
7IqM

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC28C';
console.log(char);  // Output: 슌

Java:

char c = '\uC28C';
System.out.println(c);  // Output: 슌

JSON:

{"text": "\uC28C"}  // Value: 슌

Python:

char = '\uC28C'
print(char)  # Output: 슌

Perl:

my $char = "\x{C28C}";
print $char;  # Output: 슌

PHP:

$char = "\x{C28C}";
echo $char;  // Output: 슌

Ruby:

char = "\u{C28C}"
puts char  # Output: 슌

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49804;</p>  <!-- Display: 슌 -->

HTML Hexadecimal:

<p>HTML hex: &#xC28C;</p>  <!-- Display: 슌 -->

URL Encoding:

// 슌 URL encoding
https://unicodefinder.com/search.php?query=%EC%8A%8C

Encodings

MD5:

0c456e614a43fae8b6f98e58bff74906

SHA1:

726a08c38661cdde33534f5d8218e689443897b8

Base64:

7IqM