Unicode Finder

"쿻" U+CFFB(HANGUL SYLLABLE KUH)

U+CFFB
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE KUH

Programming

C
\uCFFB
JavaScript
\uCFFB
Java
\uCFFB
Json
\uCFFB
Python
\uCFFB
Perl
\x{CFFB}
PHP
\x{CFFB}
Ruby
\u{CFFB}
Rust
\u{CFFB}
Go
\uCFFB

Web

CSS
\00CFFB
HtmlDecimal
쿻
HtmlHexadecimal
쿻
Url
%EC%BF%BB

Code

MD5
7efb75012201242ca7f0c9bc2a6e6280
Sha1
eef25cef7d7e802407ceb277026ed303b5ddde63
Base64
7L+7

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCFFB';
console.log(char);  // Output: 쿻

Java:

char c = '\uCFFB';
System.out.println(c);  // Output: 쿻

JSON:

{"text": "\uCFFB"}  // Value: 쿻

Python:

char = '\uCFFB'
print(char)  # Output: 쿻

Perl:

my $char = "\x{CFFB}";
print $char;  # Output: 쿻

PHP:

$char = "\x{CFFB}";
echo $char;  // Output: 쿻

Ruby:

char = "\u{CFFB}"
puts char  # Output: 쿻

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#53243;</p>  <!-- Display: 쿻 -->

HTML Hexadecimal:

<p>HTML hex: &#xCFFB;</p>  <!-- Display: 쿻 -->

URL Encoding:

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

Encodings

MD5:

7efb75012201242ca7f0c9bc2a6e6280

SHA1:

eef25cef7d7e802407ceb277026ed303b5ddde63

Base64:

7L+7