Unicode Finder

"숦" U+C226(HANGUL SYLLABLE SULP)

U+C226
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SULP

Programming

C
\uC226
JavaScript
\uC226
Java
\uC226
Json
\uC226
Python
\uC226
Perl
\x{C226}
PHP
\x{C226}
Ruby
\u{C226}
Rust
\u{C226}
Go
\uC226

Web

CSS
\00C226
HtmlDecimal
숦
HtmlHexadecimal
숦
Url
%EC%88%A6

Code

MD5
6f479de06995795464c2da9ac4d82c27
Sha1
563c582b4e39c2a13202a94a46d75dfc2b9d23ba
Base64
7Iim

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC226';
console.log(char);  // Output: 숦

Java:

char c = '\uC226';
System.out.println(c);  // Output: 숦

JSON:

{"text": "\uC226"}  // Value: 숦

Python:

char = '\uC226'
print(char)  # Output: 숦

Perl:

my $char = "\x{C226}";
print $char;  # Output: 숦

PHP:

$char = "\x{C226}";
echo $char;  // Output: 숦

Ruby:

char = "\u{C226}"
puts char  # Output: 숦

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49702;</p>  <!-- Display: 숦 -->

HTML Hexadecimal:

<p>HTML hex: &#xC226;</p>  <!-- Display: 숦 -->

URL Encoding:

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

Encodings

MD5:

6f479de06995795464c2da9ac4d82c27

SHA1:

563c582b4e39c2a13202a94a46d75dfc2b9d23ba

Base64:

7Iim