Unicode Finder

"숟" U+C21F(HANGUL SYLLABLE SUD)

U+C21F
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SUD

Programming

C
\uC21F
JavaScript
\uC21F
Java
\uC21F
Json
\uC21F
Python
\uC21F
Perl
\x{C21F}
PHP
\x{C21F}
Ruby
\u{C21F}
Rust
\u{C21F}
Go
\uC21F

Web

CSS
\00C21F
HtmlDecimal
숟
HtmlHexadecimal
숟
Url
%EC%88%9F

Code

MD5
c371712b8c4d64b0d3fbe03adf27b7d3
Sha1
69e04a8e1c413318c2466085aef427ba13728f67
Base64
7Iif

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC21F';
console.log(char);  // Output: 숟

Java:

char c = '\uC21F';
System.out.println(c);  // Output: 숟

JSON:

{"text": "\uC21F"}  // Value: 숟

Python:

char = '\uC21F'
print(char)  # Output: 숟

Perl:

my $char = "\x{C21F}";
print $char;  # Output: 숟

PHP:

$char = "\x{C21F}";
echo $char;  // Output: 숟

Ruby:

char = "\u{C21F}"
puts char  # Output: 숟

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49695;</p>  <!-- Display: 숟 -->

HTML Hexadecimal:

<p>HTML hex: &#xC21F;</p>  <!-- Display: 숟 -->

URL Encoding:

// 숟 URL encoding
https://unicodefinder.com/search.php?query=%EC%88%9F

Encodings

MD5:

c371712b8c4d64b0d3fbe03adf27b7d3

SHA1:

69e04a8e1c413318c2466085aef427ba13728f67

Base64:

7Iif