Unicode Finder

"지" U+C9C0(HANGUL SYLLABLE JI)

U+C9C0
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JI

Programming

C
\uC9C0
JavaScript
\uC9C0
Java
\uC9C0
Json
\uC9C0
Python
\uC9C0
Perl
\x{C9C0}
PHP
\x{C9C0}
Ruby
\u{C9C0}
Rust
\u{C9C0}
Go
\uC9C0

Web

CSS
\00C9C0
HtmlDecimal
지
HtmlHexadecimal
지
Url
%EC%A7%80

Code

MD5
f95990d5c552333989fb4febc068fb71
Sha1
0cb419946bb8a003c912d6d68e67a7f9f1b49a7c
Base64
7KeA

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC9C0';
console.log(char);  // Output: 지

Java:

char c = '\uC9C0';
System.out.println(c);  // Output: 지

JSON:

{"text": "\uC9C0"}  // Value: 지

Python:

char = '\uC9C0'
print(char)  # Output: 지

Perl:

my $char = "\x{C9C0}";
print $char;  # Output: 지

PHP:

$char = "\x{C9C0}";
echo $char;  // Output: 지

Ruby:

char = "\u{C9C0}"
puts char  # Output: 지

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51648;</p>  <!-- Display: 지 -->

HTML Hexadecimal:

<p>HTML hex: &#xC9C0;</p>  <!-- Display: 지 -->

URL Encoding:

// 지 URL encoding
https://unicodefinder.com/search.php?query=%EC%A7%80

Encodings

MD5:

f95990d5c552333989fb4febc068fb71

SHA1:

0cb419946bb8a003c912d6d68e67a7f9f1b49a7c

Base64:

7KeA