Unicode Finder

"젿" U+C83F(HANGUL SYLLABLE JYEOD)

U+C83F
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JYEOD

Programming

C
\uC83F
JavaScript
\uC83F
Java
\uC83F
Json
\uC83F
Python
\uC83F
Perl
\x{C83F}
PHP
\x{C83F}
Ruby
\u{C83F}
Rust
\u{C83F}
Go
\uC83F

Web

CSS
\00C83F
HtmlDecimal
젿
HtmlHexadecimal
젿
Url
%EC%A0%BF

Code

MD5
e725ceb9db3f7840107dea31588e8c99
Sha1
84529dc47286ccd5bd373e3a61dae52f8e1e1f71
Base64
7KC/

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC83F';
console.log(char);  // Output: 젿

Java:

char c = '\uC83F';
System.out.println(c);  // Output: 젿

JSON:

{"text": "\uC83F"}  // Value: 젿

Python:

char = '\uC83F'
print(char)  # Output: 젿

Perl:

my $char = "\x{C83F}";
print $char;  # Output: 젿

PHP:

$char = "\x{C83F}";
echo $char;  // Output: 젿

Ruby:

char = "\u{C83F}"
puts char  # Output: 젿

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51263;</p>  <!-- Display: 젿 -->

HTML Hexadecimal:

<p>HTML hex: &#xC83F;</p>  <!-- Display: 젿 -->

URL Encoding:

// 젿 URL encoding
https://unicodefinder.com/search.php?query=%EC%A0%BF

Encodings

MD5:

e725ceb9db3f7840107dea31588e8c99

SHA1:

84529dc47286ccd5bd373e3a61dae52f8e1e1f71

Base64:

7KC/