Unicode Finder

"셛" U+C15B(HANGUL SYLLABLE SYEOD)

U+C15B
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SYEOD

Programming

C
\uC15B
JavaScript
\uC15B
Java
\uC15B
Json
\uC15B
Python
\uC15B
Perl
\x{C15B}
PHP
\x{C15B}
Ruby
\u{C15B}
Rust
\u{C15B}
Go
\uC15B

Web

CSS
\00C15B
HtmlDecimal
셛
HtmlHexadecimal
셛
Url
%EC%85%9B

Code

MD5
ccbe959cb73c107d6ba828ee2178fb67
Sha1
2abc8d3a9897f82a85266fbc18500aacd9f878a2
Base64
7IWb

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC15B';
console.log(char);  // Output: 셛

Java:

char c = '\uC15B';
System.out.println(c);  // Output: 셛

JSON:

{"text": "\uC15B"}  // Value: 셛

Python:

char = '\uC15B'
print(char)  # Output: 셛

Perl:

my $char = "\x{C15B}";
print $char;  # Output: 셛

PHP:

$char = "\x{C15B}";
echo $char;  // Output: 셛

Ruby:

char = "\u{C15B}"
puts char  # Output: 셛

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49499;</p>  <!-- Display: 셛 -->

HTML Hexadecimal:

<p>HTML hex: &#xC15B;</p>  <!-- Display: 셛 -->

URL Encoding:

// 셛 URL encoding
https://unicodefinder.com/search.php?query=%EC%85%9B

Encodings

MD5:

ccbe959cb73c107d6ba828ee2178fb67

SHA1:

2abc8d3a9897f82a85266fbc18500aacd9f878a2

Base64:

7IWb