Unicode Finder

"종" U+C885(HANGUL SYLLABLE JONG)

U+C885
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JONG

Programming

C
\uC885
JavaScript
\uC885
Java
\uC885
Json
\uC885
Python
\uC885
Perl
\x{C885}
PHP
\x{C885}
Ruby
\u{C885}
Rust
\u{C885}
Go
\uC885

Web

CSS
\00C885
HtmlDecimal
종
HtmlHexadecimal
종
Url
%EC%A2%85

Code

MD5
719b434bf9a2d58b0da57618d0dadffe
Sha1
2dd9db952b26425640e0e0a06097c87397c1584a
Base64
7KKF

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC885';
console.log(char);  // Output: 종

Java:

char c = '\uC885';
System.out.println(c);  // Output: 종

JSON:

{"text": "\uC885"}  // Value: 종

Python:

char = '\uC885'
print(char)  # Output: 종

Perl:

my $char = "\x{C885}";
print $char;  # Output: 종

PHP:

$char = "\x{C885}";
echo $char;  // Output: 종

Ruby:

char = "\u{C885}"
puts char  # Output: 종

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51333;</p>  <!-- Display: 종 -->

HTML Hexadecimal:

<p>HTML hex: &#xC885;</p>  <!-- Display: 종 -->

URL Encoding:

// 종 URL encoding
https://unicodefinder.com/search.php?query=%EC%A2%85

Encodings

MD5:

719b434bf9a2d58b0da57618d0dadffe

SHA1:

2dd9db952b26425640e0e0a06097c87397c1584a

Base64:

7KKF