Unicode Finder

"쇋" U+C1CB(HANGUL SYLLABLE SWAED)

U+C1CB
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SWAED

Programming

C
\uC1CB
JavaScript
\uC1CB
Java
\uC1CB
Json
\uC1CB
Python
\uC1CB
Perl
\x{C1CB}
PHP
\x{C1CB}
Ruby
\u{C1CB}
Rust
\u{C1CB}
Go
\uC1CB

Web

CSS
\00C1CB
HtmlDecimal
쇋
HtmlHexadecimal
쇋
Url
%EC%87%8B

Code

MD5
86db08bca9134b651f8c9adb0d9f05e5
Sha1
aedd7211833798f7aa1bc5e49786965b1fccc310
Base64
7IeL

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC1CB';
console.log(char);  // Output: 쇋

Java:

char c = '\uC1CB';
System.out.println(c);  // Output: 쇋

JSON:

{"text": "\uC1CB"}  // Value: 쇋

Python:

char = '\uC1CB'
print(char)  # Output: 쇋

Perl:

my $char = "\x{C1CB}";
print $char;  # Output: 쇋

PHP:

$char = "\x{C1CB}";
echo $char;  // Output: 쇋

Ruby:

char = "\u{C1CB}"
puts char  # Output: 쇋

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49611;</p>  <!-- Display: 쇋 -->

HTML Hexadecimal:

<p>HTML hex: &#xC1CB;</p>  <!-- Display: 쇋 -->

URL Encoding:

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

Encodings

MD5:

86db08bca9134b651f8c9adb0d9f05e5

SHA1:

aedd7211833798f7aa1bc5e49786965b1fccc310

Base64:

7IeL