Unicode Finder

"섃" U+C103(HANGUL SYLLABLE SYAEGS)

U+C103
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SYAEGS

Programming

C
\uC103
JavaScript
\uC103
Java
\uC103
Json
\uC103
Python
\uC103
Perl
\x{C103}
PHP
\x{C103}
Ruby
\u{C103}
Rust
\u{C103}
Go
\uC103

Web

CSS
\00C103
HtmlDecimal
섃
HtmlHexadecimal
섃
Url
%EC%84%83

Code

MD5
50b24e6dcf1896b5a610d8e85d0fca1e
Sha1
a4ff56c9d1fd857670da8f48bb79ba008a92273e
Base64
7ISD

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC103';
console.log(char);  // Output: 섃

Java:

char c = '\uC103';
System.out.println(c);  // Output: 섃

JSON:

{"text": "\uC103"}  // Value: 섃

Python:

char = '\uC103'
print(char)  # Output: 섃

Perl:

my $char = "\x{C103}";
print $char;  # Output: 섃

PHP:

$char = "\x{C103}";
echo $char;  // Output: 섃

Ruby:

char = "\u{C103}"
puts char  # Output: 섃

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49411;</p>  <!-- Display: 섃 -->

HTML Hexadecimal:

<p>HTML hex: &#xC103;</p>  <!-- Display: 섃 -->

URL Encoding:

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

Encodings

MD5:

50b24e6dcf1896b5a610d8e85d0fca1e

SHA1:

a4ff56c9d1fd857670da8f48bb79ba008a92273e

Base64:

7ISD