Unicode Finder

"싉" U+C2C9(HANGUL SYLLABLE SYILG)

U+C2C9
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SYILG

Programming

C
\uC2C9
JavaScript
\uC2C9
Java
\uC2C9
Json
\uC2C9
Python
\uC2C9
Perl
\x{C2C9}
PHP
\x{C2C9}
Ruby
\u{C2C9}
Rust
\u{C2C9}
Go
\uC2C9

Web

CSS
\00C2C9
HtmlDecimal
싉
HtmlHexadecimal
싉
Url
%EC%8B%89

Code

MD5
d27864bdc455144e5c4d0798a853dec8
Sha1
1009862052dae6418b452555be52c52683c01ea1
Base64
7IuJ

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC2C9';
console.log(char);  // Output: 싉

Java:

char c = '\uC2C9';
System.out.println(c);  // Output: 싉

JSON:

{"text": "\uC2C9"}  // Value: 싉

Python:

char = '\uC2C9'
print(char)  # Output: 싉

Perl:

my $char = "\x{C2C9}";
print $char;  # Output: 싉

PHP:

$char = "\x{C2C9}";
echo $char;  // Output: 싉

Ruby:

char = "\u{C2C9}"
puts char  # Output: 싉

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49865;</p>  <!-- Display: 싉 -->

HTML Hexadecimal:

<p>HTML hex: &#xC2C9;</p>  <!-- Display: 싉 -->

URL Encoding:

// 싉 URL encoding
https://unicodefinder.com/search.php?query=%EC%8B%89

Encodings

MD5:

d27864bdc455144e5c4d0798a853dec8

SHA1:

1009862052dae6418b452555be52c52683c01ea1

Base64:

7IuJ