Unicode Finder

"슓" U+C293(HANGUL SYLLABLE SYULB)

U+C293
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SYULB

Programming

C
\uC293
JavaScript
\uC293
Java
\uC293
Json
\uC293
Python
\uC293
Perl
\x{C293}
PHP
\x{C293}
Ruby
\u{C293}
Rust
\u{C293}
Go
\uC293

Web

CSS
\00C293
HtmlDecimal
슓
HtmlHexadecimal
슓
Url
%EC%8A%93

Code

MD5
3c710e5b555326e79287aa6fc535e599
Sha1
4e6c9ad80cfdd0a46d623df93fd10a92a4430f22
Base64
7IqT

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC293';
console.log(char);  // Output: 슓

Java:

char c = '\uC293';
System.out.println(c);  // Output: 슓

JSON:

{"text": "\uC293"}  // Value: 슓

Python:

char = '\uC293'
print(char)  # Output: 슓

Perl:

my $char = "\x{C293}";
print $char;  # Output: 슓

PHP:

$char = "\x{C293}";
echo $char;  // Output: 슓

Ruby:

char = "\u{C293}"
puts char  # Output: 슓

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49811;</p>  <!-- Display: 슓 -->

HTML Hexadecimal:

<p>HTML hex: &#xC293;</p>  <!-- Display: 슓 -->

URL Encoding:

// 슓 URL encoding
https://unicodefinder.com/search.php?query=%EC%8A%93

Encodings

MD5:

3c710e5b555326e79287aa6fc535e599

SHA1:

4e6c9ad80cfdd0a46d623df93fd10a92a4430f22

Base64:

7IqT