Unicode Finder

"섆" U+C106(HANGUL SYLLABLE SYAENH)

U+C106
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SYAENH

Programming

C
\uC106
JavaScript
\uC106
Java
\uC106
Json
\uC106
Python
\uC106
Perl
\x{C106}
PHP
\x{C106}
Ruby
\u{C106}
Rust
\u{C106}
Go
\uC106

Web

CSS
\00C106
HtmlDecimal
섆
HtmlHexadecimal
섆
Url
%EC%84%86

Code

MD5
433996d227371144e53fd04745ae9717
Sha1
8c6462776f397987d54af47b08d2ffc333cbeccf
Base64
7ISG

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC106';
console.log(char);  // Output: 섆

Java:

char c = '\uC106';
System.out.println(c);  // Output: 섆

JSON:

{"text": "\uC106"}  // Value: 섆

Python:

char = '\uC106'
print(char)  # Output: 섆

Perl:

my $char = "\x{C106}";
print $char;  # Output: 섆

PHP:

$char = "\x{C106}";
echo $char;  // Output: 섆

Ruby:

char = "\u{C106}"
puts char  # Output: 섆

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49414;</p>  <!-- Display: 섆 -->

HTML Hexadecimal:

<p>HTML hex: &#xC106;</p>  <!-- Display: 섆 -->

URL Encoding:

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

Encodings

MD5:

433996d227371144e53fd04745ae9717

SHA1:

8c6462776f397987d54af47b08d2ffc333cbeccf

Base64:

7ISG