Unicode Finder

"죲" U+C8F2(HANGUL SYLLABLE JYOBS)

U+C8F2
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JYOBS

Programming

C
\uC8F2
JavaScript
\uC8F2
Java
\uC8F2
Json
\uC8F2
Python
\uC8F2
Perl
\x{C8F2}
PHP
\x{C8F2}
Ruby
\u{C8F2}
Rust
\u{C8F2}
Go
\uC8F2

Web

CSS
\00C8F2
HtmlDecimal
죲
HtmlHexadecimal
죲
Url
%EC%A3%B2

Code

MD5
7b650df41f30699e3edec941a6bd0058
Sha1
8ab8279a1fa7fcb097a74196350ae12c98a018ca
Base64
7KOy

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC8F2';
console.log(char);  // Output: 죲

Java:

char c = '\uC8F2';
System.out.println(c);  // Output: 죲

JSON:

{"text": "\uC8F2"}  // Value: 죲

Python:

char = '\uC8F2'
print(char)  # Output: 죲

Perl:

my $char = "\x{C8F2}";
print $char;  # Output: 죲

PHP:

$char = "\x{C8F2}";
echo $char;  // Output: 죲

Ruby:

char = "\u{C8F2}"
puts char  # Output: 죲

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51442;</p>  <!-- Display: 죲 -->

HTML Hexadecimal:

<p>HTML hex: &#xC8F2;</p>  <!-- Display: 죲 -->

URL Encoding:

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

Encodings

MD5:

7b650df41f30699e3edec941a6bd0058

SHA1:

8ab8279a1fa7fcb097a74196350ae12c98a018ca

Base64:

7KOy