Unicode Finder

"쒻" U+C4BB(HANGUL SYLLABLE SSWIGS)

U+C4BB
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SSWIGS

Programming

C
\uC4BB
JavaScript
\uC4BB
Java
\uC4BB
Json
\uC4BB
Python
\uC4BB
Perl
\x{C4BB}
PHP
\x{C4BB}
Ruby
\u{C4BB}
Rust
\u{C4BB}
Go
\uC4BB

Web

CSS
\00C4BB
HtmlDecimal
쒻
HtmlHexadecimal
쒻
Url
%EC%92%BB

Code

MD5
676a72d189e8f5cd5502ce4a82d278b2
Sha1
e1d67b80a91bda3e6f0debc7493ef9cddc6423ac
Base64
7JK7

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC4BB';
console.log(char);  // Output: 쒻

Java:

char c = '\uC4BB';
System.out.println(c);  // Output: 쒻

JSON:

{"text": "\uC4BB"}  // Value: 쒻

Python:

char = '\uC4BB'
print(char)  # Output: 쒻

Perl:

my $char = "\x{C4BB}";
print $char;  # Output: 쒻

PHP:

$char = "\x{C4BB}";
echo $char;  // Output: 쒻

Ruby:

char = "\u{C4BB}"
puts char  # Output: 쒻

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#50363;</p>  <!-- Display: 쒻 -->

HTML Hexadecimal:

<p>HTML hex: &#xC4BB;</p>  <!-- Display: 쒻 -->

URL Encoding:

// 쒻 URL encoding
https://unicodefinder.com/search.php?query=%EC%92%BB

Encodings

MD5:

676a72d189e8f5cd5502ce4a82d278b2

SHA1:

e1d67b80a91bda3e6f0debc7493ef9cddc6423ac

Base64:

7JK7