Unicode Finder

"쉶" U+C276(HANGUL SYLLABLE SWILM)

U+C276
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SWILM

Programming

C
\uC276
JavaScript
\uC276
Java
\uC276
Json
\uC276
Python
\uC276
Perl
\x{C276}
PHP
\x{C276}
Ruby
\u{C276}
Rust
\u{C276}
Go
\uC276

Web

CSS
\00C276
HtmlDecimal
쉶
HtmlHexadecimal
쉶
Url
%EC%89%B6

Code

MD5
80b1b30349e46cf1fe901ec636de9286
Sha1
192ee25df543a8625c4669fb3977e27b00d2afe4
Base64
7Im2

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC276';
console.log(char);  // Output: 쉶

Java:

char c = '\uC276';
System.out.println(c);  // Output: 쉶

JSON:

{"text": "\uC276"}  // Value: 쉶

Python:

char = '\uC276'
print(char)  # Output: 쉶

Perl:

my $char = "\x{C276}";
print $char;  # Output: 쉶

PHP:

$char = "\x{C276}";
echo $char;  // Output: 쉶

Ruby:

char = "\u{C276}"
puts char  # Output: 쉶

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49782;</p>  <!-- Display: 쉶 -->

HTML Hexadecimal:

<p>HTML hex: &#xC276;</p>  <!-- Display: 쉶 -->

URL Encoding:

// 쉶 URL encoding
https://unicodefinder.com/search.php?query=%EC%89%B6

Encodings

MD5:

80b1b30349e46cf1fe901ec636de9286

SHA1:

192ee25df543a8625c4669fb3977e27b00d2afe4

Base64:

7Im2