Unicode Finder

"숩" U+C229(HANGUL SYLLABLE SUB)

U+C229
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SUB

Programming

C
\uC229
JavaScript
\uC229
Java
\uC229
Json
\uC229
Python
\uC229
Perl
\x{C229}
PHP
\x{C229}
Ruby
\u{C229}
Rust
\u{C229}
Go
\uC229

Web

CSS
\00C229
HtmlDecimal
숩
HtmlHexadecimal
숩
Url
%EC%88%A9

Code

MD5
67a222643d83e6772863b8f511c6a5ee
Sha1
cc37c0e174d556b1c19a6f5f2c6480b3da47ca50
Base64
7Iip

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC229';
console.log(char);  // Output: 숩

Java:

char c = '\uC229';
System.out.println(c);  // Output: 숩

JSON:

{"text": "\uC229"}  // Value: 숩

Python:

char = '\uC229'
print(char)  # Output: 숩

Perl:

my $char = "\x{C229}";
print $char;  # Output: 숩

PHP:

$char = "\x{C229}";
echo $char;  // Output: 숩

Ruby:

char = "\u{C229}"
puts char  # Output: 숩

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49705;</p>  <!-- Display: 숩 -->

HTML Hexadecimal:

<p>HTML hex: &#xC229;</p>  <!-- Display: 숩 -->

URL Encoding:

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

Encodings

MD5:

67a222643d83e6772863b8f511c6a5ee

SHA1:

cc37c0e174d556b1c19a6f5f2c6480b3da47ca50

Base64:

7Iip