Unicode Finder

"콸" U+CF78(HANGUL SYLLABLE KWAL)

U+CF78
區塊名稱
Hangul Syllables
名稱
HANGUL SYLLABLE KWAL

Programming

C
\uCF78
JavaScript
\uCF78
Java
\uCF78
Json
\uCF78
Python
\uCF78
Perl
\x{CF78}
PHP
\x{CF78}
Ruby
\u{CF78}
Rust
\u{CF78}
Go
\uCF78

Web

CSS
\00CF78
HtmlDecimal
콸
HtmlHexadecimal
콸
Url
%EC%BD%B8

Code

MD5
f6c74f3e66dc6a5458cc07959a42e441
Sha1
d496bd509271e2f9f3d56f885afd8ad39b6e4aca
Base64
7L24

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\uCF78';
console.log(char);  // Output: 콸

Java:

char c = '\uCF78';
System.out.println(c);  // Output: 콸

JSON:

{"text": "\uCF78"}  // Value: 콸

Python:

char = '\uCF78'
print(char)  # Output: 콸

Perl:

my $char = "\x{CF78}";
print $char;  # Output: 콸

PHP:

$char = "\x{CF78}";
echo $char;  // Output: 콸

Ruby:

char = "\u{CF78}"
puts char  # Output: 콸

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#53112;</p>  <!-- Display: 콸 -->

HTML Hexadecimal:

<p>HTML hex: &#xCF78;</p>  <!-- Display: 콸 -->

URL Encoding:

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

Encodings

MD5:

f6c74f3e66dc6a5458cc07959a42e441

SHA1:

d496bd509271e2f9f3d56f885afd8ad39b6e4aca

Base64:

7L24