Unicode Finder

"썷" U+C377(HANGUL SYLLABLE SSEOLH)

U+C377
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SSEOLH

Programming

C
\uC377
JavaScript
\uC377
Java
\uC377
Json
\uC377
Python
\uC377
Perl
\x{C377}
PHP
\x{C377}
Ruby
\u{C377}
Rust
\u{C377}
Go
\uC377

Web

CSS
\00C377
HtmlDecimal
썷
HtmlHexadecimal
썷
Url
%EC%8D%B7

Code

MD5
c9703a5f48fee949adbc6a93e482d248
Sha1
63482e012fc9893e3864a6510542f6885eed0a49
Base64
7I23

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC377';
console.log(char);  // Output: 썷

Java:

char c = '\uC377';
System.out.println(c);  // Output: 썷

JSON:

{"text": "\uC377"}  // Value: 썷

Python:

char = '\uC377'
print(char)  # Output: 썷

Perl:

my $char = "\x{C377}";
print $char;  # Output: 썷

PHP:

$char = "\x{C377}";
echo $char;  // Output: 썷

Ruby:

char = "\u{C377}"
puts char  # Output: 썷

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#50039;</p>  <!-- Display: 썷 -->

HTML Hexadecimal:

<p>HTML hex: &#xC377;</p>  <!-- Display: 썷 -->

URL Encoding:

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

Encodings

MD5:

c9703a5f48fee949adbc6a93e482d248

SHA1:

63482e012fc9893e3864a6510542f6885eed0a49

Base64:

7I23