Unicode Finder

"숤" U+C224(HANGUL SYLLABLE SULS)

U+C224
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SULS

Programming

C
\uC224
JavaScript
\uC224
Java
\uC224
Json
\uC224
Python
\uC224
Perl
\x{C224}
PHP
\x{C224}
Ruby
\u{C224}
Rust
\u{C224}
Go
\uC224

Web

CSS
\00C224
HtmlDecimal
숤
HtmlHexadecimal
숤
Url
%EC%88%A4

Code

MD5
d7d5f68a8c5bd815911bf7c26049a375
Sha1
9e31126f1014b48dc91fd2ec87465f1dec3cc5c8
Base64
7Iik

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC224';
console.log(char);  // Output: 숤

Java:

char c = '\uC224';
System.out.println(c);  // Output: 숤

JSON:

{"text": "\uC224"}  // Value: 숤

Python:

char = '\uC224'
print(char)  # Output: 숤

Perl:

my $char = "\x{C224}";
print $char;  # Output: 숤

PHP:

$char = "\x{C224}";
echo $char;  // Output: 숤

Ruby:

char = "\u{C224}"
puts char  # Output: 숤

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49700;</p>  <!-- Display: 숤 -->

HTML Hexadecimal:

<p>HTML hex: &#xC224;</p>  <!-- Display: 숤 -->

URL Encoding:

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

Encodings

MD5:

d7d5f68a8c5bd815911bf7c26049a375

SHA1:

9e31126f1014b48dc91fd2ec87465f1dec3cc5c8

Base64:

7Iik