Unicode Finder

"쭹" U+CB79(HANGUL SYLLABLE JJWEONG)

U+CB79
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JJWEONG

Programming

C
\uCB79
JavaScript
\uCB79
Java
\uCB79
Json
\uCB79
Python
\uCB79
Perl
\x{CB79}
PHP
\x{CB79}
Ruby
\u{CB79}
Rust
\u{CB79}
Go
\uCB79

Web

CSS
\00CB79
HtmlDecimal
쭹
HtmlHexadecimal
쭹
Url
%EC%AD%B9

Code

MD5
5fef80e93d7d3f5b3f957422479c8248
Sha1
1ddf9a57c869772fc9ef02c20441a54ee2774fca
Base64
7K25

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCB79';
console.log(char);  // Output: 쭹

Java:

char c = '\uCB79';
System.out.println(c);  // Output: 쭹

JSON:

{"text": "\uCB79"}  // Value: 쭹

Python:

char = '\uCB79'
print(char)  # Output: 쭹

Perl:

my $char = "\x{CB79}";
print $char;  # Output: 쭹

PHP:

$char = "\x{CB79}";
echo $char;  // Output: 쭹

Ruby:

char = "\u{CB79}"
puts char  # Output: 쭹

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#52089;</p>  <!-- Display: 쭹 -->

HTML Hexadecimal:

<p>HTML hex: &#xCB79;</p>  <!-- Display: 쭹 -->

URL Encoding:

// 쭹 URL encoding
https://unicodefinder.com/search.php?query=%EC%AD%B9

Encodings

MD5:

5fef80e93d7d3f5b3f957422479c8248

SHA1:

1ddf9a57c869772fc9ef02c20441a54ee2774fca

Base64:

7K25