Unicode Finder

"쉅" U+C245(HANGUL SYLLABLE SWEOB)

U+C245
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SWEOB

Programming

C
\uC245
JavaScript
\uC245
Java
\uC245
Json
\uC245
Python
\uC245
Perl
\x{C245}
PHP
\x{C245}
Ruby
\u{C245}
Rust
\u{C245}
Go
\uC245

Web

CSS
\00C245
HtmlDecimal
쉅
HtmlHexadecimal
쉅
Url
%EC%89%85

Code

MD5
5b65d84af9ec6386d4d3bff438fef2f6
Sha1
d1e828971352277418db123c619e79a5a2822ac4
Base64
7ImF

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC245';
console.log(char);  // Output: 쉅

Java:

char c = '\uC245';
System.out.println(c);  // Output: 쉅

JSON:

{"text": "\uC245"}  // Value: 쉅

Python:

char = '\uC245'
print(char)  # Output: 쉅

Perl:

my $char = "\x{C245}";
print $char;  # Output: 쉅

PHP:

$char = "\x{C245}";
echo $char;  // Output: 쉅

Ruby:

char = "\u{C245}"
puts char  # Output: 쉅

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49733;</p>  <!-- Display: 쉅 -->

HTML Hexadecimal:

<p>HTML hex: &#xC245;</p>  <!-- Display: 쉅 -->

URL Encoding:

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

Encodings

MD5:

5b65d84af9ec6386d4d3bff438fef2f6

SHA1:

d1e828971352277418db123c619e79a5a2822ac4

Base64:

7ImF