Unicode Finder

"솰" U+C1B0(HANGUL SYLLABLE SWAL)

U+C1B0
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SWAL

Programming

C
\uC1B0
JavaScript
\uC1B0
Java
\uC1B0
Json
\uC1B0
Python
\uC1B0
Perl
\x{C1B0}
PHP
\x{C1B0}
Ruby
\u{C1B0}
Rust
\u{C1B0}
Go
\uC1B0

Web

CSS
\00C1B0
HtmlDecimal
솰
HtmlHexadecimal
솰
Url
%EC%86%B0

Code

MD5
fc85fd56092f53f59efb52a5e2389298
Sha1
5e542239806aca4d4673606849dadd70b0720778
Base64
7Iaw

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC1B0';
console.log(char);  // Output: 솰

Java:

char c = '\uC1B0';
System.out.println(c);  // Output: 솰

JSON:

{"text": "\uC1B0"}  // Value: 솰

Python:

char = '\uC1B0'
print(char)  # Output: 솰

Perl:

my $char = "\x{C1B0}";
print $char;  # Output: 솰

PHP:

$char = "\x{C1B0}";
echo $char;  // Output: 솰

Ruby:

char = "\u{C1B0}"
puts char  # Output: 솰

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49584;</p>  <!-- Display: 솰 -->

HTML Hexadecimal:

<p>HTML hex: &#xC1B0;</p>  <!-- Display: 솰 -->

URL Encoding:

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

Encodings

MD5:

fc85fd56092f53f59efb52a5e2389298

SHA1:

5e542239806aca4d4673606849dadd70b0720778

Base64:

7Iaw