Unicode Finder

"슏" U+C28F(HANGUL SYLLABLE SYUD)

U+C28F
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SYUD

Programming

C
\uC28F
JavaScript
\uC28F
Java
\uC28F
Json
\uC28F
Python
\uC28F
Perl
\x{C28F}
PHP
\x{C28F}
Ruby
\u{C28F}
Rust
\u{C28F}
Go
\uC28F

Web

CSS
\00C28F
HtmlDecimal
슏
HtmlHexadecimal
슏
Url
%EC%8A%8F

Code

MD5
f8f083ebe7d35bf0ebe39b110da9879f
Sha1
6b9a4fa6c6bb5270999cf59dfd9e95401e724563
Base64
7IqP

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC28F';
console.log(char);  // Output: 슏

Java:

char c = '\uC28F';
System.out.println(c);  // Output: 슏

JSON:

{"text": "\uC28F"}  // Value: 슏

Python:

char = '\uC28F'
print(char)  # Output: 슏

Perl:

my $char = "\x{C28F}";
print $char;  # Output: 슏

PHP:

$char = "\x{C28F}";
echo $char;  // Output: 슏

Ruby:

char = "\u{C28F}"
puts char  # Output: 슏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49807;</p>  <!-- Display: 슏 -->

HTML Hexadecimal:

<p>HTML hex: &#xC28F;</p>  <!-- Display: 슏 -->

URL Encoding:

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

Encodings

MD5:

f8f083ebe7d35bf0ebe39b110da9879f

SHA1:

6b9a4fa6c6bb5270999cf59dfd9e95401e724563

Base64:

7IqP