Unicode Finder

"췞" U+CDDE(HANGUL SYLLABLE CWEBS)

U+CDDE
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE CWEBS

Programming

C
\uCDDE
JavaScript
\uCDDE
Java
\uCDDE
Json
\uCDDE
Python
\uCDDE
Perl
\x{CDDE}
PHP
\x{CDDE}
Ruby
\u{CDDE}
Rust
\u{CDDE}
Go
\uCDDE

Web

CSS
\00CDDE
HtmlDecimal
췞
HtmlHexadecimal
췞
Url
%EC%B7%9E

Code

MD5
5e35cf32064b65bb6466072987e258f8
Sha1
54e34190b256282a79f737ccaaac1bc4466b71e2
Base64
7Lee

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCDDE';
console.log(char);  // Output: 췞

Java:

char c = '\uCDDE';
System.out.println(c);  // Output: 췞

JSON:

{"text": "\uCDDE"}  // Value: 췞

Python:

char = '\uCDDE'
print(char)  # Output: 췞

Perl:

my $char = "\x{CDDE}";
print $char;  # Output: 췞

PHP:

$char = "\x{CDDE}";
echo $char;  // Output: 췞

Ruby:

char = "\u{CDDE}"
puts char  # Output: 췞

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#52702;</p>  <!-- Display: 췞 -->

HTML Hexadecimal:

<p>HTML hex: &#xCDDE;</p>  <!-- Display: 췞 -->

URL Encoding:

// 췞 URL encoding
https://unicodefinder.com/search.php?query=%EC%B7%9E

Encodings

MD5:

5e35cf32064b65bb6466072987e258f8

SHA1:

54e34190b256282a79f737ccaaac1bc4466b71e2

Base64:

7Lee