Unicode Finder

"제" U+C81C(HANGUL SYLLABLE JE)

U+C81C
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JE

Programming

C
\uC81C
JavaScript
\uC81C
Java
\uC81C
Json
\uC81C
Python
\uC81C
Perl
\x{C81C}
PHP
\x{C81C}
Ruby
\u{C81C}
Rust
\u{C81C}
Go
\uC81C

Web

CSS
\00C81C
HtmlDecimal
제
HtmlHexadecimal
제
Url
%EC%A0%9C

Code

MD5
c48b3010320f6c65d0a750a3796f4783
Sha1
a39fb8b80637e1f022e844f13c271631f691e217
Base64
7KCc

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC81C';
console.log(char);  // Output: 제

Java:

char c = '\uC81C';
System.out.println(c);  // Output: 제

JSON:

{"text": "\uC81C"}  // Value: 제

Python:

char = '\uC81C'
print(char)  # Output: 제

Perl:

my $char = "\x{C81C}";
print $char;  # Output: 제

PHP:

$char = "\x{C81C}";
echo $char;  // Output: 제

Ruby:

char = "\u{C81C}"
puts char  # Output: 제

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51228;</p>  <!-- Display: 제 -->

HTML Hexadecimal:

<p>HTML hex: &#xC81C;</p>  <!-- Display: 제 -->

URL Encoding:

// 제 URL encoding
https://unicodefinder.com/search.php?query=%EC%A0%9C

Encodings

MD5:

c48b3010320f6c65d0a750a3796f4783

SHA1:

a39fb8b80637e1f022e844f13c271631f691e217

Base64:

7KCc