Unicode Finder

"씒" U+C512(HANGUL SYLLABLE SSYINH)

U+C512
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SSYINH

Programming

C
\uC512
JavaScript
\uC512
Java
\uC512
Json
\uC512
Python
\uC512
Perl
\x{C512}
PHP
\x{C512}
Ruby
\u{C512}
Rust
\u{C512}
Go
\uC512

Web

CSS
\00C512
HtmlDecimal
씒
HtmlHexadecimal
씒
Url
%EC%94%92

Code

MD5
1944aa3539920bd16a99a8c9516b686a
Sha1
675276e21ee0858d0b0a60a5f76c08065024d07f
Base64
7JSS

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC512';
console.log(char);  // Output: 씒

Java:

char c = '\uC512';
System.out.println(c);  // Output: 씒

JSON:

{"text": "\uC512"}  // Value: 씒

Python:

char = '\uC512'
print(char)  # Output: 씒

Perl:

my $char = "\x{C512}";
print $char;  # Output: 씒

PHP:

$char = "\x{C512}";
echo $char;  // Output: 씒

Ruby:

char = "\u{C512}"
puts char  # Output: 씒

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#50450;</p>  <!-- Display: 씒 -->

HTML Hexadecimal:

<p>HTML hex: &#xC512;</p>  <!-- Display: 씒 -->

URL Encoding:

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

Encodings

MD5:

1944aa3539920bd16a99a8c9516b686a

SHA1:

675276e21ee0858d0b0a60a5f76c08065024d07f

Base64:

7JSS