Unicode Finder

"솫" U+C1AB(HANGUL SYLLABLE SWAGS)

U+C1AB
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SWAGS

Programming

C
\uC1AB
JavaScript
\uC1AB
Java
\uC1AB
Json
\uC1AB
Python
\uC1AB
Perl
\x{C1AB}
PHP
\x{C1AB}
Ruby
\u{C1AB}
Rust
\u{C1AB}
Go
\uC1AB

Web

CSS
\00C1AB
HtmlDecimal
솫
HtmlHexadecimal
솫
Url
%EC%86%AB

Code

MD5
7c172e735707993d4a27c84d622ee70f
Sha1
067b415691f80172842daea176dd9b99c9c87de4
Base64
7Iar

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC1AB';
console.log(char);  // Output: 솫

Java:

char c = '\uC1AB';
System.out.println(c);  // Output: 솫

JSON:

{"text": "\uC1AB"}  // Value: 솫

Python:

char = '\uC1AB'
print(char)  # Output: 솫

Perl:

my $char = "\x{C1AB}";
print $char;  # Output: 솫

PHP:

$char = "\x{C1AB}";
echo $char;  // Output: 솫

Ruby:

char = "\u{C1AB}"
puts char  # Output: 솫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49579;</p>  <!-- Display: 솫 -->

HTML Hexadecimal:

<p>HTML hex: &#xC1AB;</p>  <!-- Display: 솫 -->

URL Encoding:

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

Encodings

MD5:

7c172e735707993d4a27c84d622ee70f

SHA1:

067b415691f80172842daea176dd9b99c9c87de4

Base64:

7Iar