Unicode Finder

"켆" U+CF06(HANGUL SYLLABLE KENH)

U+CF06
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE KENH

Programming

C
\uCF06
JavaScript
\uCF06
Java
\uCF06
Json
\uCF06
Python
\uCF06
Perl
\x{CF06}
PHP
\x{CF06}
Ruby
\u{CF06}
Rust
\u{CF06}
Go
\uCF06

Web

CSS
\00CF06
HtmlDecimal
켆
HtmlHexadecimal
켆
Url
%EC%BC%86

Code

MD5
bc2c61d01b437956c974099ea7e7e1ba
Sha1
811c0da3de9797278b061e002dc61d5e7549f219
Base64
7LyG

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCF06';
console.log(char);  // Output: 켆

Java:

char c = '\uCF06';
System.out.println(c);  // Output: 켆

JSON:

{"text": "\uCF06"}  // Value: 켆

Python:

char = '\uCF06'
print(char)  # Output: 켆

Perl:

my $char = "\x{CF06}";
print $char;  # Output: 켆

PHP:

$char = "\x{CF06}";
echo $char;  // Output: 켆

Ruby:

char = "\u{CF06}"
puts char  # Output: 켆

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#52998;</p>  <!-- Display: 켆 -->

HTML Hexadecimal:

<p>HTML hex: &#xCF06;</p>  <!-- Display: 켆 -->

URL Encoding:

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

Encodings

MD5:

bc2c61d01b437956c974099ea7e7e1ba

SHA1:

811c0da3de9797278b061e002dc61d5e7549f219

Base64:

7LyG