Unicode Finder

"켖" U+CF16(HANGUL SYLLABLE KEJ)

U+CF16
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE KEJ

Programming

C
\uCF16
JavaScript
\uCF16
Java
\uCF16
Json
\uCF16
Python
\uCF16
Perl
\x{CF16}
PHP
\x{CF16}
Ruby
\u{CF16}
Rust
\u{CF16}
Go
\uCF16

Web

CSS
\00CF16
HtmlDecimal
켖
HtmlHexadecimal
켖
Url
%EC%BC%96

Code

MD5
5f1cd5b76a31465a7e39e0b354d1c24e
Sha1
03553b782b795f9999a647a6ab8f7c6920ea17a8
Base64
7LyW

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCF16';
console.log(char);  // Output: 켖

Java:

char c = '\uCF16';
System.out.println(c);  // Output: 켖

JSON:

{"text": "\uCF16"}  // Value: 켖

Python:

char = '\uCF16'
print(char)  # Output: 켖

Perl:

my $char = "\x{CF16}";
print $char;  # Output: 켖

PHP:

$char = "\x{CF16}";
echo $char;  // Output: 켖

Ruby:

char = "\u{CF16}"
puts char  # Output: 켖

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#53014;</p>  <!-- Display: 켖 -->

HTML Hexadecimal:

<p>HTML hex: &#xCF16;</p>  <!-- Display: 켖 -->

URL Encoding:

// 켖 URL encoding
https://unicodefinder.com/search.php?query=%EC%BC%96

Encodings

MD5:

5f1cd5b76a31465a7e39e0b354d1c24e

SHA1:

03553b782b795f9999a647a6ab8f7c6920ea17a8

Base64:

7LyW