Unicode Finder

"쐨" U+C428(HANGUL SYLLABLE SSWAEK)

U+C428
ブロック名
Hangul Syllables
名前
HANGUL SYLLABLE SSWAEK

Programming

C
\uC428
JavaScript
\uC428
Java
\uC428
Json
\uC428
Python
\uC428
Perl
\x{C428}
PHP
\x{C428}
Ruby
\u{C428}
Rust
\u{C428}
Go
\uC428

Web

CSS
\00C428
HtmlDecimal
쐨
HtmlHexadecimal
쐨
Url
%EC%90%A8

Code

MD5
fd55ad0f9a309aa3b99707c0c06db57d
Sha1
82312060c90c89706ab20fb82ad5f42861f1c521
Base64
7JCo

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uC428';
console.log(char);  // Output: 쐨

Java:

char c = '\uC428';
System.out.println(c);  // Output: 쐨

JSON:

{"text": "\uC428"}  // Value: 쐨

Python:

char = '\uC428'
print(char)  # Output: 쐨

Perl:

my $char = "\x{C428}";
print $char;  # Output: 쐨

PHP:

$char = "\x{C428}";
echo $char;  // Output: 쐨

Ruby:

char = "\u{C428}"
puts char  # Output: 쐨

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#50216;</p>  <!-- Display: 쐨 -->

HTML Hexadecimal:

<p>HTML hex: &#xC428;</p>  <!-- Display: 쐨 -->

URL Encoding:

// 쐨 URL encoding
https://unicodefinder.com/search.php?query=%EC%90%A8

Encodings

MD5:

fd55ad0f9a309aa3b99707c0c06db57d

SHA1:

82312060c90c89706ab20fb82ad5f42861f1c521

Base64:

7JCo