Unicode Finder

"콶" U+CF76(HANGUL SYLLABLE KWANH)

U+CF76
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE KWANH

Programming

C
\uCF76
JavaScript
\uCF76
Java
\uCF76
Json
\uCF76
Python
\uCF76
Perl
\x{CF76}
PHP
\x{CF76}
Ruby
\u{CF76}
Rust
\u{CF76}
Go
\uCF76

Web

CSS
\00CF76
HtmlDecimal
콶
HtmlHexadecimal
콶
Url
%EC%BD%B6

Code

MD5
b1c39decdc55c9694182c065965ec4cc
Sha1
62e1f2b4af887b280dbe7493b88ad048499bc08f
Base64
7L22

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCF76';
console.log(char);  // Output: 콶

Java:

char c = '\uCF76';
System.out.println(c);  // Output: 콶

JSON:

{"text": "\uCF76"}  // Value: 콶

Python:

char = '\uCF76'
print(char)  # Output: 콶

Perl:

my $char = "\x{CF76}";
print $char;  # Output: 콶

PHP:

$char = "\x{CF76}";
echo $char;  // Output: 콶

Ruby:

char = "\u{CF76}"
puts char  # Output: 콶

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#53110;</p>  <!-- Display: 콶 -->

HTML Hexadecimal:

<p>HTML hex: &#xCF76;</p>  <!-- Display: 콶 -->

URL Encoding:

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

Encodings

MD5:

b1c39decdc55c9694182c065965ec4cc

SHA1:

62e1f2b4af887b280dbe7493b88ad048499bc08f

Base64:

7L22