Unicode Finder

"숂" U+C202(HANGUL SYLLABLE SYONH)

U+C202
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SYONH

Programming

C
\uC202
JavaScript
\uC202
Java
\uC202
Json
\uC202
Python
\uC202
Perl
\x{C202}
PHP
\x{C202}
Ruby
\u{C202}
Rust
\u{C202}
Go
\uC202

Web

CSS
\00C202
HtmlDecimal
숂
HtmlHexadecimal
숂
Url
%EC%88%82

Code

MD5
199abac6d573fe954db8316c6dfb9d05
Sha1
3f9291ec82d7a6e613dc5844c8032d5c869fdfc2
Base64
7IiC

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC202';
console.log(char);  // Output: 숂

Java:

char c = '\uC202';
System.out.println(c);  // Output: 숂

JSON:

{"text": "\uC202"}  // Value: 숂

Python:

char = '\uC202'
print(char)  # Output: 숂

Perl:

my $char = "\x{C202}";
print $char;  # Output: 숂

PHP:

$char = "\x{C202}";
echo $char;  // Output: 숂

Ruby:

char = "\u{C202}"
puts char  # Output: 숂

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49666;</p>  <!-- Display: 숂 -->

HTML Hexadecimal:

<p>HTML hex: &#xC202;</p>  <!-- Display: 숂 -->

URL Encoding:

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

Encodings

MD5:

199abac6d573fe954db8316c6dfb9d05

SHA1:

3f9291ec82d7a6e613dc5844c8032d5c869fdfc2

Base64:

7IiC