Unicode Finder

"숁" U+C201(HANGUL SYLLABLE SYONJ)

U+C201
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SYONJ

Programming

C
\uC201
JavaScript
\uC201
Java
\uC201
Json
\uC201
Python
\uC201
Perl
\x{C201}
PHP
\x{C201}
Ruby
\u{C201}
Rust
\u{C201}
Go
\uC201

Web

CSS
\00C201
HtmlDecimal
숁
HtmlHexadecimal
숁
Url
%EC%88%81

Code

MD5
3c64fd4d56f83a8b8b232df1b984e69b
Sha1
9d2629cd0fbe3d33562aba4769fe331f48bae806
Base64
7IiB

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC201';
console.log(char);  // Output: 숁

Java:

char c = '\uC201';
System.out.println(c);  // Output: 숁

JSON:

{"text": "\uC201"}  // Value: 숁

Python:

char = '\uC201'
print(char)  # Output: 숁

Perl:

my $char = "\x{C201}";
print $char;  # Output: 숁

PHP:

$char = "\x{C201}";
echo $char;  // Output: 숁

Ruby:

char = "\u{C201}"
puts char  # Output: 숁

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49665;</p>  <!-- Display: 숁 -->

HTML Hexadecimal:

<p>HTML hex: &#xC201;</p>  <!-- Display: 숁 -->

URL Encoding:

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

Encodings

MD5:

3c64fd4d56f83a8b8b232df1b984e69b

SHA1:

9d2629cd0fbe3d33562aba4769fe331f48bae806

Base64:

7IiB