Unicode Finder

"켃" U+CF03(HANGUL SYLLABLE KEGS)

U+CF03
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE KEGS

Programming

C
\uCF03
JavaScript
\uCF03
Java
\uCF03
Json
\uCF03
Python
\uCF03
Perl
\x{CF03}
PHP
\x{CF03}
Ruby
\u{CF03}
Rust
\u{CF03}
Go
\uCF03

Web

CSS
\00CF03
HtmlDecimal
켃
HtmlHexadecimal
켃
Url
%EC%BC%83

Code

MD5
896fa35b1601a1f881b91ce891d58b49
Sha1
b842686b0351eed6c46f802bf3291143dcd4bdbc
Base64
7LyD

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCF03';
console.log(char);  // Output: 켃

Java:

char c = '\uCF03';
System.out.println(c);  // Output: 켃

JSON:

{"text": "\uCF03"}  // Value: 켃

Python:

char = '\uCF03'
print(char)  # Output: 켃

Perl:

my $char = "\x{CF03}";
print $char;  # Output: 켃

PHP:

$char = "\x{CF03}";
echo $char;  // Output: 켃

Ruby:

char = "\u{CF03}"
puts char  # Output: 켃

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#52995;</p>  <!-- Display: 켃 -->

HTML Hexadecimal:

<p>HTML hex: &#xCF03;</p>  <!-- Display: 켃 -->

URL Encoding:

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

Encodings

MD5:

896fa35b1601a1f881b91ce891d58b49

SHA1:

b842686b0351eed6c46f802bf3291143dcd4bdbc

Base64:

7LyD