Unicode Finder

"죰" U+C8F0(HANGUL SYLLABLE JYOM)

U+C8F0
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JYOM

Programming

C
\uC8F0
JavaScript
\uC8F0
Java
\uC8F0
Json
\uC8F0
Python
\uC8F0
Perl
\x{C8F0}
PHP
\x{C8F0}
Ruby
\u{C8F0}
Rust
\u{C8F0}
Go
\uC8F0

Web

CSS
\00C8F0
HtmlDecimal
죰
HtmlHexadecimal
죰
Url
%EC%A3%B0

Code

MD5
655c2df16a0a5e1b1ca952c351c7b5d0
Sha1
bdd172e9429143fdf7e951d495f7edd62ff1cc69
Base64
7KOw

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC8F0';
console.log(char);  // Output: 죰

Java:

char c = '\uC8F0';
System.out.println(c);  // Output: 죰

JSON:

{"text": "\uC8F0"}  // Value: 죰

Python:

char = '\uC8F0'
print(char)  # Output: 죰

Perl:

my $char = "\x{C8F0}";
print $char;  # Output: 죰

PHP:

$char = "\x{C8F0}";
echo $char;  // Output: 죰

Ruby:

char = "\u{C8F0}"
puts char  # Output: 죰

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51440;</p>  <!-- Display: 죰 -->

HTML Hexadecimal:

<p>HTML hex: &#xC8F0;</p>  <!-- Display: 죰 -->

URL Encoding:

// 죰 URL encoding
https://unicodefinder.com/search.php?query=%EC%A3%B0

Encodings

MD5:

655c2df16a0a5e1b1ca952c351c7b5d0

SHA1:

bdd172e9429143fdf7e951d495f7edd62ff1cc69

Base64:

7KOw