Unicode Finder

"솟" U+C19F(HANGUL SYLLABLE SOS)

U+C19F
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SOS

Programming

C
\uC19F
JavaScript
\uC19F
Java
\uC19F
Json
\uC19F
Python
\uC19F
Perl
\x{C19F}
PHP
\x{C19F}
Ruby
\u{C19F}
Rust
\u{C19F}
Go
\uC19F

Web

CSS
\00C19F
HtmlDecimal
솟
HtmlHexadecimal
솟
Url
%EC%86%9F

Code

MD5
d5c038127930f14235a74d99f04dec77
Sha1
45d8faf71ff0e405003cc4ffcfc706659bb8e5b3
Base64
7Iaf

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC19F';
console.log(char);  // Output: 솟

Java:

char c = '\uC19F';
System.out.println(c);  // Output: 솟

JSON:

{"text": "\uC19F"}  // Value: 솟

Python:

char = '\uC19F'
print(char)  # Output: 솟

Perl:

my $char = "\x{C19F}";
print $char;  # Output: 솟

PHP:

$char = "\x{C19F}";
echo $char;  // Output: 솟

Ruby:

char = "\u{C19F}"
puts char  # Output: 솟

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49567;</p>  <!-- Display: 솟 -->

HTML Hexadecimal:

<p>HTML hex: &#xC19F;</p>  <!-- Display: 솟 -->

URL Encoding:

// 솟 URL encoding
https://unicodefinder.com/search.php?query=%EC%86%9F

Encodings

MD5:

d5c038127930f14235a74d99f04dec77

SHA1:

45d8faf71ff0e405003cc4ffcfc706659bb8e5b3

Base64:

7Iaf