Unicode Finder

"솘" U+C198(HANGUL SYLLABLE SOLS)

U+C198
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SOLS

Programming

C
\uC198
JavaScript
\uC198
Java
\uC198
Json
\uC198
Python
\uC198
Perl
\x{C198}
PHP
\x{C198}
Ruby
\u{C198}
Rust
\u{C198}
Go
\uC198

Web

CSS
\00C198
HtmlDecimal
솘
HtmlHexadecimal
솘
Url
%EC%86%98

Code

MD5
a5a4b3c32abf43997e7e95be866ce334
Sha1
6d6cde41220e7998a99e3a454e24846c8bb25927
Base64
7IaY

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC198';
console.log(char);  // Output: 솘

Java:

char c = '\uC198';
System.out.println(c);  // Output: 솘

JSON:

{"text": "\uC198"}  // Value: 솘

Python:

char = '\uC198'
print(char)  # Output: 솘

Perl:

my $char = "\x{C198}";
print $char;  # Output: 솘

PHP:

$char = "\x{C198}";
echo $char;  // Output: 솘

Ruby:

char = "\u{C198}"
puts char  # Output: 솘

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49560;</p>  <!-- Display: 솘 -->

HTML Hexadecimal:

<p>HTML hex: &#xC198;</p>  <!-- Display: 솘 -->

URL Encoding:

// 솘 URL encoding
https://unicodefinder.com/search.php?query=%EC%86%98

Encodings

MD5:

a5a4b3c32abf43997e7e95be866ce334

SHA1:

6d6cde41220e7998a99e3a454e24846c8bb25927

Base64:

7IaY