Unicode Finder

"쏰" U+C3F0(HANGUL SYLLABLE SSOK)

U+C3F0
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SSOK

Programming

C
\uC3F0
JavaScript
\uC3F0
Java
\uC3F0
Json
\uC3F0
Python
\uC3F0
Perl
\x{C3F0}
PHP
\x{C3F0}
Ruby
\u{C3F0}
Rust
\u{C3F0}
Go
\uC3F0

Web

CSS
\00C3F0
HtmlDecimal
쏰
HtmlHexadecimal
쏰
Url
%EC%8F%B0

Code

MD5
42d0fd7c4b6f0950663056a50ddb0c5d
Sha1
cd8e89a5a5ef6bdb4b36a38e9a4d49d9ad651762
Base64
7I+w

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC3F0';
console.log(char);  // Output: 쏰

Java:

char c = '\uC3F0';
System.out.println(c);  // Output: 쏰

JSON:

{"text": "\uC3F0"}  // Value: 쏰

Python:

char = '\uC3F0'
print(char)  # Output: 쏰

Perl:

my $char = "\x{C3F0}";
print $char;  # Output: 쏰

PHP:

$char = "\x{C3F0}";
echo $char;  // Output: 쏰

Ruby:

char = "\u{C3F0}"
puts char  # Output: 쏰

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#50160;</p>  <!-- Display: 쏰 -->

HTML Hexadecimal:

<p>HTML hex: &#xC3F0;</p>  <!-- Display: 쏰 -->

URL Encoding:

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

Encodings

MD5:

42d0fd7c4b6f0950663056a50ddb0c5d

SHA1:

cd8e89a5a5ef6bdb4b36a38e9a4d49d9ad651762

Base64:

7I+w