Unicode Finder

"숕" U+C215(HANGUL SYLLABLE SYOT)

U+C215
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SYOT

Programming

C
\uC215
JavaScript
\uC215
Java
\uC215
Json
\uC215
Python
\uC215
Perl
\x{C215}
PHP
\x{C215}
Ruby
\u{C215}
Rust
\u{C215}
Go
\uC215

Web

CSS
\00C215
HtmlDecimal
숕
HtmlHexadecimal
숕
Url
%EC%88%95

Code

MD5
f63855adeeb2c8889396230a2cf8a558
Sha1
f96a92e987690fbe43498be2b5512d75f52e55f8
Base64
7IiV

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC215';
console.log(char);  // Output: 숕

Java:

char c = '\uC215';
System.out.println(c);  // Output: 숕

JSON:

{"text": "\uC215"}  // Value: 숕

Python:

char = '\uC215'
print(char)  # Output: 숕

Perl:

my $char = "\x{C215}";
print $char;  # Output: 숕

PHP:

$char = "\x{C215}";
echo $char;  // Output: 숕

Ruby:

char = "\u{C215}"
puts char  # Output: 숕

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49685;</p>  <!-- Display: 숕 -->

HTML Hexadecimal:

<p>HTML hex: &#xC215;</p>  <!-- Display: 숕 -->

URL Encoding:

// 숕 URL encoding
https://unicodefinder.com/search.php?query=%EC%88%95

Encodings

MD5:

f63855adeeb2c8889396230a2cf8a558

SHA1:

f96a92e987690fbe43498be2b5512d75f52e55f8

Base64:

7IiV