Unicode Finder

"슈" U+C288(HANGUL SYLLABLE SYU)

U+C288
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SYU

Programming

C
\uC288
JavaScript
\uC288
Java
\uC288
Json
\uC288
Python
\uC288
Perl
\x{C288}
PHP
\x{C288}
Ruby
\u{C288}
Rust
\u{C288}
Go
\uC288

Web

CSS
\00C288
HtmlDecimal
슈
HtmlHexadecimal
슈
Url
%EC%8A%88

Code

MD5
7313e78a6d174586a9fcd4c00d9f1177
Sha1
5f0f930442b410db7853495be443247b1c08d54b
Base64
7IqI

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC288';
console.log(char);  // Output: 슈

Java:

char c = '\uC288';
System.out.println(c);  // Output: 슈

JSON:

{"text": "\uC288"}  // Value: 슈

Python:

char = '\uC288'
print(char)  # Output: 슈

Perl:

my $char = "\x{C288}";
print $char;  # Output: 슈

PHP:

$char = "\x{C288}";
echo $char;  // Output: 슈

Ruby:

char = "\u{C288}"
puts char  # Output: 슈

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49800;</p>  <!-- Display: 슈 -->

HTML Hexadecimal:

<p>HTML hex: &#xC288;</p>  <!-- Display: 슈 -->

URL Encoding:

// 슈 URL encoding
https://unicodefinder.com/search.php?query=%EC%8A%88

Encodings

MD5:

7313e78a6d174586a9fcd4c00d9f1177

SHA1:

5f0f930442b410db7853495be443247b1c08d54b

Base64:

7IqI