Unicode Finder

"썼" U+C37C(HANGUL SYLLABLE SSEOSS)

U+C37C
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SSEOSS

Programming

C
\uC37C
JavaScript
\uC37C
Java
\uC37C
Json
\uC37C
Python
\uC37C
Perl
\x{C37C}
PHP
\x{C37C}
Ruby
\u{C37C}
Rust
\u{C37C}
Go
\uC37C

Web

CSS
\00C37C
HtmlDecimal
썼
HtmlHexadecimal
썼
Url
%EC%8D%BC

Code

MD5
55a6d24e428f27e77522f0ccf3860408
Sha1
873f36c6c712d9e15521bc2b0a2170f71a4c2dfe
Base64
7I28

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC37C';
console.log(char);  // Output: 썼

Java:

char c = '\uC37C';
System.out.println(c);  // Output: 썼

JSON:

{"text": "\uC37C"}  // Value: 썼

Python:

char = '\uC37C'
print(char)  # Output: 썼

Perl:

my $char = "\x{C37C}";
print $char;  # Output: 썼

PHP:

$char = "\x{C37C}";
echo $char;  // Output: 썼

Ruby:

char = "\u{C37C}"
puts char  # Output: 썼

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#50044;</p>  <!-- Display: 썼 -->

HTML Hexadecimal:

<p>HTML hex: &#xC37C;</p>  <!-- Display: 썼 -->

URL Encoding:

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

Encodings

MD5:

55a6d24e428f27e77522f0ccf3860408

SHA1:

873f36c6c712d9e15521bc2b0a2170f71a4c2dfe

Base64:

7I28