Unicode Finder

"솭" U+C1AD(HANGUL SYLLABLE SWANJ)

U+C1AD
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SWANJ

Programming

C
\uC1AD
JavaScript
\uC1AD
Java
\uC1AD
Json
\uC1AD
Python
\uC1AD
Perl
\x{C1AD}
PHP
\x{C1AD}
Ruby
\u{C1AD}
Rust
\u{C1AD}
Go
\uC1AD

Web

CSS
\00C1AD
HtmlDecimal
솭
HtmlHexadecimal
솭
Url
%EC%86%AD

Code

MD5
fff470bd931fe6626450f78953875897
Sha1
06eb84ee83ec268471e8db418d303537c0a7d1ec
Base64
7Iat

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC1AD';
console.log(char);  // Output: 솭

Java:

char c = '\uC1AD';
System.out.println(c);  // Output: 솭

JSON:

{"text": "\uC1AD"}  // Value: 솭

Python:

char = '\uC1AD'
print(char)  # Output: 솭

Perl:

my $char = "\x{C1AD}";
print $char;  # Output: 솭

PHP:

$char = "\x{C1AD}";
echo $char;  // Output: 솭

Ruby:

char = "\u{C1AD}"
puts char  # Output: 솭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49581;</p>  <!-- Display: 솭 -->

HTML Hexadecimal:

<p>HTML hex: &#xC1AD;</p>  <!-- Display: 솭 -->

URL Encoding:

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

Encodings

MD5:

fff470bd931fe6626450f78953875897

SHA1:

06eb84ee83ec268471e8db418d303537c0a7d1ec

Base64:

7Iat