Unicode Finder

"씏" U+C50F(HANGUL SYLLABLE SSYIGS)

U+C50F
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SSYIGS

Programming

C
\uC50F
JavaScript
\uC50F
Java
\uC50F
Json
\uC50F
Python
\uC50F
Perl
\x{C50F}
PHP
\x{C50F}
Ruby
\u{C50F}
Rust
\u{C50F}
Go
\uC50F

Web

CSS
\00C50F
HtmlDecimal
씏
HtmlHexadecimal
씏
Url
%EC%94%8F

Code

MD5
456e2c1c3c097e429bdf16b679bbb4d7
Sha1
1e31d6f54a621d6eb0840762a2fa2031097a9b98
Base64
7JSP

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC50F';
console.log(char);  // Output: 씏

Java:

char c = '\uC50F';
System.out.println(c);  // Output: 씏

JSON:

{"text": "\uC50F"}  // Value: 씏

Python:

char = '\uC50F'
print(char)  # Output: 씏

Perl:

my $char = "\x{C50F}";
print $char;  # Output: 씏

PHP:

$char = "\x{C50F}";
echo $char;  // Output: 씏

Ruby:

char = "\u{C50F}"
puts char  # Output: 씏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#50447;</p>  <!-- Display: 씏 -->

HTML Hexadecimal:

<p>HTML hex: &#xC50F;</p>  <!-- Display: 씏 -->

URL Encoding:

// 씏 URL encoding
https://unicodefinder.com/search.php?query=%EC%94%8F

Encodings

MD5:

456e2c1c3c097e429bdf16b679bbb4d7

SHA1:

1e31d6f54a621d6eb0840762a2fa2031097a9b98

Base64:

7JSP