Unicode Finder

"쥯" U+C96F(HANGUL SYLLABLE JYUGS)

U+C96F
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JYUGS

Programming

C
\uC96F
JavaScript
\uC96F
Java
\uC96F
Json
\uC96F
Python
\uC96F
Perl
\x{C96F}
PHP
\x{C96F}
Ruby
\u{C96F}
Rust
\u{C96F}
Go
\uC96F

Web

CSS
\00C96F
HtmlDecimal
쥯
HtmlHexadecimal
쥯
Url
%EC%A5%AF

Code

MD5
864a67177ed0332d214e7e6e0da6740d
Sha1
01cff37af58fd0a8ec36afcdf696861e0b8bafbf
Base64
7KWv

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC96F';
console.log(char);  // Output: 쥯

Java:

char c = '\uC96F';
System.out.println(c);  // Output: 쥯

JSON:

{"text": "\uC96F"}  // Value: 쥯

Python:

char = '\uC96F'
print(char)  # Output: 쥯

Perl:

my $char = "\x{C96F}";
print $char;  # Output: 쥯

PHP:

$char = "\x{C96F}";
echo $char;  // Output: 쥯

Ruby:

char = "\u{C96F}"
puts char  # Output: 쥯

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51567;</p>  <!-- Display: 쥯 -->

HTML Hexadecimal:

<p>HTML hex: &#xC96F;</p>  <!-- Display: 쥯 -->

URL Encoding:

// 쥯 URL encoding
https://unicodefinder.com/search.php?query=%EC%A5%AF

Encodings

MD5:

864a67177ed0332d214e7e6e0da6740d

SHA1:

01cff37af58fd0a8ec36afcdf696861e0b8bafbf

Base64:

7KWv