Unicode Finder

"콫" U+CF6B(HANGUL SYLLABLE KOC)

U+CF6B
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE KOC

Programming

C
\uCF6B
JavaScript
\uCF6B
Java
\uCF6B
Json
\uCF6B
Python
\uCF6B
Perl
\x{CF6B}
PHP
\x{CF6B}
Ruby
\u{CF6B}
Rust
\u{CF6B}
Go
\uCF6B

Web

CSS
\00CF6B
HtmlDecimal
콫
HtmlHexadecimal
콫
Url
%EC%BD%AB

Code

MD5
ec3a43677277c23d9e217c8d7002408b
Sha1
dfd51905fb818a1054b5231da37eb1611f03ff6a
Base64
7L2r

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCF6B';
console.log(char);  // Output: 콫

Java:

char c = '\uCF6B';
System.out.println(c);  // Output: 콫

JSON:

{"text": "\uCF6B"}  // Value: 콫

Python:

char = '\uCF6B'
print(char)  # Output: 콫

Perl:

my $char = "\x{CF6B}";
print $char;  # Output: 콫

PHP:

$char = "\x{CF6B}";
echo $char;  // Output: 콫

Ruby:

char = "\u{CF6B}"
puts char  # Output: 콫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#53099;</p>  <!-- Display: 콫 -->

HTML Hexadecimal:

<p>HTML hex: &#xCF6B;</p>  <!-- Display: 콫 -->

URL Encoding:

// 콫 URL encoding
https://unicodefinder.com/search.php?query=%EC%BD%AB

Encodings

MD5:

ec3a43677277c23d9e217c8d7002408b

SHA1:

dfd51905fb818a1054b5231da37eb1611f03ff6a

Base64:

7L2r