Unicode Finder

"숙" U+C219(HANGUL SYLLABLE SUG)

U+C219
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SUG

Programming

C
\uC219
JavaScript
\uC219
Java
\uC219
Json
\uC219
Python
\uC219
Perl
\x{C219}
PHP
\x{C219}
Ruby
\u{C219}
Rust
\u{C219}
Go
\uC219

Web

CSS
\00C219
HtmlDecimal
숙
HtmlHexadecimal
숙
Url
%EC%88%99

Code

MD5
2e3ab9db6b39d3e15714a6ae8f850484
Sha1
d004d1b1919f1fc23fb6488ceed6ce35137cd06c
Base64
7IiZ

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC219';
console.log(char);  // Output: 숙

Java:

char c = '\uC219';
System.out.println(c);  // Output: 숙

JSON:

{"text": "\uC219"}  // Value: 숙

Python:

char = '\uC219'
print(char)  # Output: 숙

Perl:

my $char = "\x{C219}";
print $char;  # Output: 숙

PHP:

$char = "\x{C219}";
echo $char;  // Output: 숙

Ruby:

char = "\u{C219}"
puts char  # Output: 숙

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49689;</p>  <!-- Display: 숙 -->

HTML Hexadecimal:

<p>HTML hex: &#xC219;</p>  <!-- Display: 숙 -->

URL Encoding:

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

Encodings

MD5:

2e3ab9db6b39d3e15714a6ae8f850484

SHA1:

d004d1b1919f1fc23fb6488ceed6ce35137cd06c

Base64:

7IiZ