Unicode Finder

"쇆" U+C1C6(HANGUL SYLLABLE SWAEGG)

U+C1C6
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SWAEGG

Programming

C
\uC1C6
JavaScript
\uC1C6
Java
\uC1C6
Json
\uC1C6
Python
\uC1C6
Perl
\x{C1C6}
PHP
\x{C1C6}
Ruby
\u{C1C6}
Rust
\u{C1C6}
Go
\uC1C6

Web

CSS
\00C1C6
HtmlDecimal
쇆
HtmlHexadecimal
쇆
Url
%EC%87%86

Code

MD5
47d0f39d0fb3d3d3e51f04746d7cb4fa
Sha1
80752470e0ad807c9bc1c4370e897f597c497108
Base64
7IeG

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC1C6';
console.log(char);  // Output: 쇆

Java:

char c = '\uC1C6';
System.out.println(c);  // Output: 쇆

JSON:

{"text": "\uC1C6"}  // Value: 쇆

Python:

char = '\uC1C6'
print(char)  # Output: 쇆

Perl:

my $char = "\x{C1C6}";
print $char;  # Output: 쇆

PHP:

$char = "\x{C1C6}";
echo $char;  // Output: 쇆

Ruby:

char = "\u{C1C6}"
puts char  # Output: 쇆

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49606;</p>  <!-- Display: 쇆 -->

HTML Hexadecimal:

<p>HTML hex: &#xC1C6;</p>  <!-- Display: 쇆 -->

URL Encoding:

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

Encodings

MD5:

47d0f39d0fb3d3d3e51f04746d7cb4fa

SHA1:

80752470e0ad807c9bc1c4370e897f597c497108

Base64:

7IeG