Unicode Finder

"켮" U+CF2E(HANGUL SYLLABLE KYEOBS)

U+CF2E
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE KYEOBS

Programming

C
\uCF2E
JavaScript
\uCF2E
Java
\uCF2E
Json
\uCF2E
Python
\uCF2E
Perl
\x{CF2E}
PHP
\x{CF2E}
Ruby
\u{CF2E}
Rust
\u{CF2E}
Go
\uCF2E

Web

CSS
\00CF2E
HtmlDecimal
켮
HtmlHexadecimal
켮
Url
%EC%BC%AE

Code

MD5
a298bc7f2f9d4b4919182d9b8c7a33e4
Sha1
5557147c758033511aef80b23fd7aa7e1e9f6c74
Base64
7Lyu

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCF2E';
console.log(char);  // Output: 켮

Java:

char c = '\uCF2E';
System.out.println(c);  // Output: 켮

JSON:

{"text": "\uCF2E"}  // Value: 켮

Python:

char = '\uCF2E'
print(char)  # Output: 켮

Perl:

my $char = "\x{CF2E}";
print $char;  # Output: 켮

PHP:

$char = "\x{CF2E}";
echo $char;  // Output: 켮

Ruby:

char = "\u{CF2E}"
puts char  # Output: 켮

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#53038;</p>  <!-- Display: 켮 -->

HTML Hexadecimal:

<p>HTML hex: &#xCF2E;</p>  <!-- Display: 켮 -->

URL Encoding:

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

Encodings

MD5:

a298bc7f2f9d4b4919182d9b8c7a33e4

SHA1:

5557147c758033511aef80b23fd7aa7e1e9f6c74

Base64:

7Lyu