Unicode Finder

"쏼" U+C3FC(HANGUL SYLLABLE SSWAL)

U+C3FC
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SSWAL

Programming

C
\uC3FC
JavaScript
\uC3FC
Java
\uC3FC
Json
\uC3FC
Python
\uC3FC
Perl
\x{C3FC}
PHP
\x{C3FC}
Ruby
\u{C3FC}
Rust
\u{C3FC}
Go
\uC3FC

Web

CSS
\00C3FC
HtmlDecimal
쏼
HtmlHexadecimal
쏼
Url
%EC%8F%BC

Code

MD5
5e4f3282202dccaf7b7fd0e06358690e
Sha1
5da6f7317a21b9bd3a678a32628059a052a362ea
Base64
7I+8

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC3FC';
console.log(char);  // Output: 쏼

Java:

char c = '\uC3FC';
System.out.println(c);  // Output: 쏼

JSON:

{"text": "\uC3FC"}  // Value: 쏼

Python:

char = '\uC3FC'
print(char)  # Output: 쏼

Perl:

my $char = "\x{C3FC}";
print $char;  # Output: 쏼

PHP:

$char = "\x{C3FC}";
echo $char;  // Output: 쏼

Ruby:

char = "\u{C3FC}"
puts char  # Output: 쏼

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#50172;</p>  <!-- Display: 쏼 -->

HTML Hexadecimal:

<p>HTML hex: &#xC3FC;</p>  <!-- Display: 쏼 -->

URL Encoding:

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

Encodings

MD5:

5e4f3282202dccaf7b7fd0e06358690e

SHA1:

5da6f7317a21b9bd3a678a32628059a052a362ea

Base64:

7I+8