Unicode Finder

"켣" U+CF23(HANGUL SYLLABLE KYEOD)

U+CF23
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE KYEOD

Programming

C
\uCF23
JavaScript
\uCF23
Java
\uCF23
Json
\uCF23
Python
\uCF23
Perl
\x{CF23}
PHP
\x{CF23}
Ruby
\u{CF23}
Rust
\u{CF23}
Go
\uCF23

Web

CSS
\00CF23
HtmlDecimal
켣
HtmlHexadecimal
켣
Url
%EC%BC%A3

Code

MD5
750014acd0275eadbe2cff81ffc1796a
Sha1
f464a4c4c50e05ffdcb3cff4168bff4522188848
Base64
7Lyj

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCF23';
console.log(char);  // Output: 켣

Java:

char c = '\uCF23';
System.out.println(c);  // Output: 켣

JSON:

{"text": "\uCF23"}  // Value: 켣

Python:

char = '\uCF23'
print(char)  # Output: 켣

Perl:

my $char = "\x{CF23}";
print $char;  # Output: 켣

PHP:

$char = "\x{CF23}";
echo $char;  // Output: 켣

Ruby:

char = "\u{CF23}"
puts char  # Output: 켣

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#53027;</p>  <!-- Display: 켣 -->

HTML Hexadecimal:

<p>HTML hex: &#xCF23;</p>  <!-- Display: 켣 -->

URL Encoding:

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

Encodings

MD5:

750014acd0275eadbe2cff81ffc1796a

SHA1:

f464a4c4c50e05ffdcb3cff4168bff4522188848

Base64:

7Lyj