Unicode Finder

"콻" U+CF7B(HANGUL SYLLABLE KWALB)

U+CF7B
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE KWALB

Programming

C
\uCF7B
JavaScript
\uCF7B
Java
\uCF7B
Json
\uCF7B
Python
\uCF7B
Perl
\x{CF7B}
PHP
\x{CF7B}
Ruby
\u{CF7B}
Rust
\u{CF7B}
Go
\uCF7B

Web

CSS
\00CF7B
HtmlDecimal
콻
HtmlHexadecimal
콻
Url
%EC%BD%BB

Code

MD5
46a9f65bc0c30366a058980b8e3c46ae
Sha1
93c2071ccc5d13fa50fc678e1515f492dcbe75fd
Base64
7L27

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCF7B';
console.log(char);  // Output: 콻

Java:

char c = '\uCF7B';
System.out.println(c);  // Output: 콻

JSON:

{"text": "\uCF7B"}  // Value: 콻

Python:

char = '\uCF7B'
print(char)  # Output: 콻

Perl:

my $char = "\x{CF7B}";
print $char;  # Output: 콻

PHP:

$char = "\x{CF7B}";
echo $char;  // Output: 콻

Ruby:

char = "\u{CF7B}"
puts char  # Output: 콻

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#53115;</p>  <!-- Display: 콻 -->

HTML Hexadecimal:

<p>HTML hex: &#xCF7B;</p>  <!-- Display: 콻 -->

URL Encoding:

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

Encodings

MD5:

46a9f65bc0c30366a058980b8e3c46ae

SHA1:

93c2071ccc5d13fa50fc678e1515f492dcbe75fd

Base64:

7L27