Unicode Finder

"썫" U+C36B(HANGUL SYLLABLE SSEOGS)

U+C36B
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SSEOGS

Programming

C
\uC36B
JavaScript
\uC36B
Java
\uC36B
Json
\uC36B
Python
\uC36B
Perl
\x{C36B}
PHP
\x{C36B}
Ruby
\u{C36B}
Rust
\u{C36B}
Go
\uC36B

Web

CSS
\00C36B
HtmlDecimal
썫
HtmlHexadecimal
썫
Url
%EC%8D%AB

Code

MD5
0044b6c59c85e4718c1c6011842f3e84
Sha1
76db3d7f21e4441ad5cfe7fe786fb7eca80dbb9c
Base64
7I2r

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC36B';
console.log(char);  // Output: 썫

Java:

char c = '\uC36B';
System.out.println(c);  // Output: 썫

JSON:

{"text": "\uC36B"}  // Value: 썫

Python:

char = '\uC36B'
print(char)  # Output: 썫

Perl:

my $char = "\x{C36B}";
print $char;  # Output: 썫

PHP:

$char = "\x{C36B}";
echo $char;  // Output: 썫

Ruby:

char = "\u{C36B}"
puts char  # Output: 썫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#50027;</p>  <!-- Display: 썫 -->

HTML Hexadecimal:

<p>HTML hex: &#xC36B;</p>  <!-- Display: 썫 -->

URL Encoding:

// 썫 URL encoding
https://unicodefinder.com/search.php?query=%EC%8D%AB

Encodings

MD5:

0044b6c59c85e4718c1c6011842f3e84

SHA1:

76db3d7f21e4441ad5cfe7fe786fb7eca80dbb9c

Base64:

7I2r