Unicode Finder

"섥" U+C125(HANGUL SYLLABLE SEOLG)

U+C125
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SEOLG

Programming

C
\uC125
JavaScript
\uC125
Java
\uC125
Json
\uC125
Python
\uC125
Perl
\x{C125}
PHP
\x{C125}
Ruby
\u{C125}
Rust
\u{C125}
Go
\uC125

Web

CSS
\00C125
HtmlDecimal
섥
HtmlHexadecimal
섥
Url
%EC%84%A5

Code

MD5
834850d26def4169150643df7b17d32b
Sha1
1f952a3440c15eeb13795b4c16bc29afecd53875
Base64
7ISl

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC125';
console.log(char);  // Output: 섥

Java:

char c = '\uC125';
System.out.println(c);  // Output: 섥

JSON:

{"text": "\uC125"}  // Value: 섥

Python:

char = '\uC125'
print(char)  # Output: 섥

Perl:

my $char = "\x{C125}";
print $char;  # Output: 섥

PHP:

$char = "\x{C125}";
echo $char;  // Output: 섥

Ruby:

char = "\u{C125}"
puts char  # Output: 섥

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49445;</p>  <!-- Display: 섥 -->

HTML Hexadecimal:

<p>HTML hex: &#xC125;</p>  <!-- Display: 섥 -->

URL Encoding:

// 섥 URL encoding
https://unicodefinder.com/search.php?query=%EC%84%A5

Encodings

MD5:

834850d26def4169150643df7b17d32b

SHA1:

1f952a3440c15eeb13795b4c16bc29afecd53875

Base64:

7ISl