Unicode Finder

"솏" U+C18F(HANGUL SYLLABLE SOGS)

U+C18F
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SOGS

Programming

C
\uC18F
JavaScript
\uC18F
Java
\uC18F
Json
\uC18F
Python
\uC18F
Perl
\x{C18F}
PHP
\x{C18F}
Ruby
\u{C18F}
Rust
\u{C18F}
Go
\uC18F

Web

CSS
\00C18F
HtmlDecimal
솏
HtmlHexadecimal
솏
Url
%EC%86%8F

Code

MD5
7cc50539d22ea13ee708530fdbf7a24e
Sha1
eb8c4b6f14e002d6c24a3f8f83286cbd5094df7c
Base64
7IaP

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC18F';
console.log(char);  // Output: 솏

Java:

char c = '\uC18F';
System.out.println(c);  // Output: 솏

JSON:

{"text": "\uC18F"}  // Value: 솏

Python:

char = '\uC18F'
print(char)  # Output: 솏

Perl:

my $char = "\x{C18F}";
print $char;  # Output: 솏

PHP:

$char = "\x{C18F}";
echo $char;  // Output: 솏

Ruby:

char = "\u{C18F}"
puts char  # Output: 솏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49551;</p>  <!-- Display: 솏 -->

HTML Hexadecimal:

<p>HTML hex: &#xC18F;</p>  <!-- Display: 솏 -->

URL Encoding:

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

Encodings

MD5:

7cc50539d22ea13ee708530fdbf7a24e

SHA1:

eb8c4b6f14e002d6c24a3f8f83286cbd5094df7c

Base64:

7IaP