Unicode Finder

"쪳" U+CAB3(HANGUL SYLLABLE JJYES)

U+CAB3
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JJYES

Programming

C
\uCAB3
JavaScript
\uCAB3
Java
\uCAB3
Json
\uCAB3
Python
\uCAB3
Perl
\x{CAB3}
PHP
\x{CAB3}
Ruby
\u{CAB3}
Rust
\u{CAB3}
Go
\uCAB3

Web

CSS
\00CAB3
HtmlDecimal
쪳
HtmlHexadecimal
쪳
Url
%EC%AA%B3

Code

MD5
926f79fa8839b486412548f120c3686f
Sha1
9df5c23ca39f00e681db980db6f96fb970344378
Base64
7Kqz

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCAB3';
console.log(char);  // Output: 쪳

Java:

char c = '\uCAB3';
System.out.println(c);  // Output: 쪳

JSON:

{"text": "\uCAB3"}  // Value: 쪳

Python:

char = '\uCAB3'
print(char)  # Output: 쪳

Perl:

my $char = "\x{CAB3}";
print $char;  # Output: 쪳

PHP:

$char = "\x{CAB3}";
echo $char;  // Output: 쪳

Ruby:

char = "\u{CAB3}"
puts char  # Output: 쪳

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51891;</p>  <!-- Display: 쪳 -->

HTML Hexadecimal:

<p>HTML hex: &#xCAB3;</p>  <!-- Display: 쪳 -->

URL Encoding:

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

Encodings

MD5:

926f79fa8839b486412548f120c3686f

SHA1:

9df5c23ca39f00e681db980db6f96fb970344378

Base64:

7Kqz