Unicode Finder

"숋" U+C20B(HANGUL SYLLABLE SYOLH)

U+C20B
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SYOLH

Programming

C
\uC20B
JavaScript
\uC20B
Java
\uC20B
Json
\uC20B
Python
\uC20B
Perl
\x{C20B}
PHP
\x{C20B}
Ruby
\u{C20B}
Rust
\u{C20B}
Go
\uC20B

Web

CSS
\00C20B
HtmlDecimal
숋
HtmlHexadecimal
숋
Url
%EC%88%8B

Code

MD5
5c10356c16ada2cf6a5e385b32ead140
Sha1
a5036174b74706f1deeedf6855fc8c561aed4f1a
Base64
7IiL

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC20B';
console.log(char);  // Output: 숋

Java:

char c = '\uC20B';
System.out.println(c);  // Output: 숋

JSON:

{"text": "\uC20B"}  // Value: 숋

Python:

char = '\uC20B'
print(char)  # Output: 숋

Perl:

my $char = "\x{C20B}";
print $char;  # Output: 숋

PHP:

$char = "\x{C20B}";
echo $char;  // Output: 숋

Ruby:

char = "\u{C20B}"
puts char  # Output: 숋

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49675;</p>  <!-- Display: 숋 -->

HTML Hexadecimal:

<p>HTML hex: &#xC20B;</p>  <!-- Display: 숋 -->

URL Encoding:

// 숋 URL encoding
https://unicodefinder.com/search.php?query=%EC%88%8B

Encodings

MD5:

5c10356c16ada2cf6a5e385b32ead140

SHA1:

a5036174b74706f1deeedf6855fc8c561aed4f1a

Base64:

7IiL