Unicode Finder

"쾷" U+CFB7(HANGUL SYLLABLE KOELH)

U+CFB7
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE KOELH

Programming

C
\uCFB7
JavaScript
\uCFB7
Java
\uCFB7
Json
\uCFB7
Python
\uCFB7
Perl
\x{CFB7}
PHP
\x{CFB7}
Ruby
\u{CFB7}
Rust
\u{CFB7}
Go
\uCFB7

Web

CSS
\00CFB7
HtmlDecimal
쾷
HtmlHexadecimal
쾷
Url
%EC%BE%B7

Code

MD5
85367ebc88fe1ed8773c64a5cbe47d2f
Sha1
56d01d9f844734e14edfa4deaefc303cd630f848
Base64
7L63

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCFB7';
console.log(char);  // Output: 쾷

Java:

char c = '\uCFB7';
System.out.println(c);  // Output: 쾷

JSON:

{"text": "\uCFB7"}  // Value: 쾷

Python:

char = '\uCFB7'
print(char)  # Output: 쾷

Perl:

my $char = "\x{CFB7}";
print $char;  # Output: 쾷

PHP:

$char = "\x{CFB7}";
echo $char;  // Output: 쾷

Ruby:

char = "\u{CFB7}"
puts char  # Output: 쾷

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#53175;</p>  <!-- Display: 쾷 -->

HTML Hexadecimal:

<p>HTML hex: &#xCFB7;</p>  <!-- Display: 쾷 -->

URL Encoding:

// 쾷 URL encoding
https://unicodefinder.com/search.php?query=%EC%BE%B7

Encodings

MD5:

85367ebc88fe1ed8773c64a5cbe47d2f

SHA1:

56d01d9f844734e14edfa4deaefc303cd630f848

Base64:

7L63