Unicode Finder

"쏻" U+C3FB(HANGUL SYLLABLE SSWAD)

U+C3FB
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SSWAD

Programming

C
\uC3FB
JavaScript
\uC3FB
Java
\uC3FB
Json
\uC3FB
Python
\uC3FB
Perl
\x{C3FB}
PHP
\x{C3FB}
Ruby
\u{C3FB}
Rust
\u{C3FB}
Go
\uC3FB

Web

CSS
\00C3FB
HtmlDecimal
쏻
HtmlHexadecimal
쏻
Url
%EC%8F%BB

Code

MD5
f5946c87bde7d19a5b0816feb389b9a2
Sha1
2bfc710d35eb7c81e65a939661eb19edf31c540b
Base64
7I+7

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC3FB';
console.log(char);  // Output: 쏻

Java:

char c = '\uC3FB';
System.out.println(c);  // Output: 쏻

JSON:

{"text": "\uC3FB"}  // Value: 쏻

Python:

char = '\uC3FB'
print(char)  # Output: 쏻

Perl:

my $char = "\x{C3FB}";
print $char;  # Output: 쏻

PHP:

$char = "\x{C3FB}";
echo $char;  // Output: 쏻

Ruby:

char = "\u{C3FB}"
puts char  # Output: 쏻

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#50171;</p>  <!-- Display: 쏻 -->

HTML Hexadecimal:

<p>HTML hex: &#xC3FB;</p>  <!-- Display: 쏻 -->

URL Encoding:

// 쏻 URL encoding
https://unicodefinder.com/search.php?query=%EC%8F%BB

Encodings

MD5:

f5946c87bde7d19a5b0816feb389b9a2

SHA1:

2bfc710d35eb7c81e65a939661eb19edf31c540b

Base64:

7I+7