Unicode Finder

"쏸" U+C3F8(HANGUL SYLLABLE SSWAN)

U+C3F8
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SSWAN

Programming

C
\uC3F8
JavaScript
\uC3F8
Java
\uC3F8
Json
\uC3F8
Python
\uC3F8
Perl
\x{C3F8}
PHP
\x{C3F8}
Ruby
\u{C3F8}
Rust
\u{C3F8}
Go
\uC3F8

Web

CSS
\00C3F8
HtmlDecimal
쏸
HtmlHexadecimal
쏸
Url
%EC%8F%B8

Code

MD5
6141f5b95e5d7bc694a60e7cf0ab3ee7
Sha1
5d4664e1cb1beea0ae76acf4915f26659c256e78
Base64
7I+4

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC3F8';
console.log(char);  // Output: 쏸

Java:

char c = '\uC3F8';
System.out.println(c);  // Output: 쏸

JSON:

{"text": "\uC3F8"}  // Value: 쏸

Python:

char = '\uC3F8'
print(char)  # Output: 쏸

Perl:

my $char = "\x{C3F8}";
print $char;  # Output: 쏸

PHP:

$char = "\x{C3F8}";
echo $char;  // Output: 쏸

Ruby:

char = "\u{C3F8}"
puts char  # Output: 쏸

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#50168;</p>  <!-- Display: 쏸 -->

HTML Hexadecimal:

<p>HTML hex: &#xC3F8;</p>  <!-- Display: 쏸 -->

URL Encoding:

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

Encodings

MD5:

6141f5b95e5d7bc694a60e7cf0ab3ee7

SHA1:

5d4664e1cb1beea0ae76acf4915f26659c256e78

Base64:

7I+4