Unicode Finder

"쒳" U+C4B3(HANGUL SYLLABLE SSWEC)

U+C4B3
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SSWEC

Programming

C
\uC4B3
JavaScript
\uC4B3
Java
\uC4B3
Json
\uC4B3
Python
\uC4B3
Perl
\x{C4B3}
PHP
\x{C4B3}
Ruby
\u{C4B3}
Rust
\u{C4B3}
Go
\uC4B3

Web

CSS
\00C4B3
HtmlDecimal
쒳
HtmlHexadecimal
쒳
Url
%EC%92%B3

Code

MD5
52f706ffc750da6f3d72c39798b50dd9
Sha1
f583c69449efdd1d0073e50a10d98deec23ad71f
Base64
7JKz

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC4B3';
console.log(char);  // Output: 쒳

Java:

char c = '\uC4B3';
System.out.println(c);  // Output: 쒳

JSON:

{"text": "\uC4B3"}  // Value: 쒳

Python:

char = '\uC4B3'
print(char)  # Output: 쒳

Perl:

my $char = "\x{C4B3}";
print $char;  # Output: 쒳

PHP:

$char = "\x{C4B3}";
echo $char;  // Output: 쒳

Ruby:

char = "\u{C4B3}"
puts char  # Output: 쒳

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#50355;</p>  <!-- Display: 쒳 -->

HTML Hexadecimal:

<p>HTML hex: &#xC4B3;</p>  <!-- Display: 쒳 -->

URL Encoding:

// 쒳 URL encoding
https://unicodefinder.com/search.php?query=%EC%92%B3

Encodings

MD5:

52f706ffc750da6f3d72c39798b50dd9

SHA1:

f583c69449efdd1d0073e50a10d98deec23ad71f

Base64:

7JKz