Unicode Finder

"젇" U+C807(HANGUL SYLLABLE JEOD)

U+C807
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JEOD

Programming

C
\uC807
JavaScript
\uC807
Java
\uC807
Json
\uC807
Python
\uC807
Perl
\x{C807}
PHP
\x{C807}
Ruby
\u{C807}
Rust
\u{C807}
Go
\uC807

Web

CSS
\00C807
HtmlDecimal
젇
HtmlHexadecimal
젇
Url
%EC%A0%87

Code

MD5
9f3a45ddb8ea48ee69059a48acb473dc
Sha1
02cf29e885932eeb576267949e44152b77633ba2
Base64
7KCH

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC807';
console.log(char);  // Output: 젇

Java:

char c = '\uC807';
System.out.println(c);  // Output: 젇

JSON:

{"text": "\uC807"}  // Value: 젇

Python:

char = '\uC807'
print(char)  # Output: 젇

Perl:

my $char = "\x{C807}";
print $char;  # Output: 젇

PHP:

$char = "\x{C807}";
echo $char;  // Output: 젇

Ruby:

char = "\u{C807}"
puts char  # Output: 젇

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51207;</p>  <!-- Display: 젇 -->

HTML Hexadecimal:

<p>HTML hex: &#xC807;</p>  <!-- Display: 젇 -->

URL Encoding:

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

Encodings

MD5:

9f3a45ddb8ea48ee69059a48acb473dc

SHA1:

02cf29e885932eeb576267949e44152b77633ba2

Base64:

7KCH