Unicode Finder

"솋" U+C18B(HANGUL SYLLABLE SYEH)

U+C18B
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SYEH

Programming

C
\uC18B
JavaScript
\uC18B
Java
\uC18B
Json
\uC18B
Python
\uC18B
Perl
\x{C18B}
PHP
\x{C18B}
Ruby
\u{C18B}
Rust
\u{C18B}
Go
\uC18B

Web

CSS
\00C18B
HtmlDecimal
솋
HtmlHexadecimal
솋
Url
%EC%86%8B

Code

MD5
a79624a278c25007074ad8bd8b26c1ea
Sha1
79f9736395dd3d7e3679d1093b26ba3c0eefd321
Base64
7IaL

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC18B';
console.log(char);  // Output: 솋

Java:

char c = '\uC18B';
System.out.println(c);  // Output: 솋

JSON:

{"text": "\uC18B"}  // Value: 솋

Python:

char = '\uC18B'
print(char)  # Output: 솋

Perl:

my $char = "\x{C18B}";
print $char;  # Output: 솋

PHP:

$char = "\x{C18B}";
echo $char;  // Output: 솋

Ruby:

char = "\u{C18B}"
puts char  # Output: 솋

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49547;</p>  <!-- Display: 솋 -->

HTML Hexadecimal:

<p>HTML hex: &#xC18B;</p>  <!-- Display: 솋 -->

URL Encoding:

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

Encodings

MD5:

a79624a278c25007074ad8bd8b26c1ea

SHA1:

79f9736395dd3d7e3679d1093b26ba3c0eefd321

Base64:

7IaL