Unicode Finder

"슃" U+C283(HANGUL SYLLABLE SWIC)

U+C283
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SWIC

Programming

C
\uC283
JavaScript
\uC283
Java
\uC283
Json
\uC283
Python
\uC283
Perl
\x{C283}
PHP
\x{C283}
Ruby
\u{C283}
Rust
\u{C283}
Go
\uC283

Web

CSS
\00C283
HtmlDecimal
슃
HtmlHexadecimal
슃
Url
%EC%8A%83

Code

MD5
18f2773c4ead70d7e7c9ee20bf6b3d74
Sha1
563c5ae6dbaa786dd8793272f91f488cf6bdc142
Base64
7IqD

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC283';
console.log(char);  // Output: 슃

Java:

char c = '\uC283';
System.out.println(c);  // Output: 슃

JSON:

{"text": "\uC283"}  // Value: 슃

Python:

char = '\uC283'
print(char)  # Output: 슃

Perl:

my $char = "\x{C283}";
print $char;  # Output: 슃

PHP:

$char = "\x{C283}";
echo $char;  // Output: 슃

Ruby:

char = "\u{C283}"
puts char  # Output: 슃

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49795;</p>  <!-- Display: 슃 -->

HTML Hexadecimal:

<p>HTML hex: &#xC283;</p>  <!-- Display: 슃 -->

URL Encoding:

// 슃 URL encoding
https://unicodefinder.com/search.php?query=%EC%8A%83

Encodings

MD5:

18f2773c4ead70d7e7c9ee20bf6b3d74

SHA1:

563c5ae6dbaa786dd8793272f91f488cf6bdc142

Base64:

7IqD