Unicode Finder

"슕" U+C295(HANGUL SYLLABLE SYULT)

U+C295
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SYULT

Programming

C
\uC295
JavaScript
\uC295
Java
\uC295
Json
\uC295
Python
\uC295
Perl
\x{C295}
PHP
\x{C295}
Ruby
\u{C295}
Rust
\u{C295}
Go
\uC295

Web

CSS
\00C295
HtmlDecimal
슕
HtmlHexadecimal
슕
Url
%EC%8A%95

Code

MD5
0f9dcac63a62dca57478ca10acf048da
Sha1
668108ea44f2e4eeb6d260462ccdeab31953727d
Base64
7IqV

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC295';
console.log(char);  // Output: 슕

Java:

char c = '\uC295';
System.out.println(c);  // Output: 슕

JSON:

{"text": "\uC295"}  // Value: 슕

Python:

char = '\uC295'
print(char)  # Output: 슕

Perl:

my $char = "\x{C295}";
print $char;  # Output: 슕

PHP:

$char = "\x{C295}";
echo $char;  // Output: 슕

Ruby:

char = "\u{C295}"
puts char  # Output: 슕

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49813;</p>  <!-- Display: 슕 -->

HTML Hexadecimal:

<p>HTML hex: &#xC295;</p>  <!-- Display: 슕 -->

URL Encoding:

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

Encodings

MD5:

0f9dcac63a62dca57478ca10acf048da

SHA1:

668108ea44f2e4eeb6d260462ccdeab31953727d

Base64:

7IqV