Unicode Finder

"씄" U+C504(HANGUL SYLLABLE SSEUSS)

U+C504
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SSEUSS

Programming

C
\uC504
JavaScript
\uC504
Java
\uC504
Json
\uC504
Python
\uC504
Perl
\x{C504}
PHP
\x{C504}
Ruby
\u{C504}
Rust
\u{C504}
Go
\uC504

Web

CSS
\00C504
HtmlDecimal
씄
HtmlHexadecimal
씄
Url
%EC%94%84

Code

MD5
1c912d94824564f8f042cccc21cc1e99
Sha1
125282cc1dfc51e50e0008abd61864645d07f573
Base64
7JSE

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC504';
console.log(char);  // Output: 씄

Java:

char c = '\uC504';
System.out.println(c);  // Output: 씄

JSON:

{"text": "\uC504"}  // Value: 씄

Python:

char = '\uC504'
print(char)  # Output: 씄

Perl:

my $char = "\x{C504}";
print $char;  # Output: 씄

PHP:

$char = "\x{C504}";
echo $char;  // Output: 씄

Ruby:

char = "\u{C504}"
puts char  # Output: 씄

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#50436;</p>  <!-- Display: 씄 -->

HTML Hexadecimal:

<p>HTML hex: &#xC504;</p>  <!-- Display: 씄 -->

URL Encoding:

// 씄 URL encoding
https://unicodefinder.com/search.php?query=%EC%94%84

Encodings

MD5:

1c912d94824564f8f042cccc21cc1e99

SHA1:

125282cc1dfc51e50e0008abd61864645d07f573

Base64:

7JSE