Unicode Finder

"쮸" U+CBB8(HANGUL SYLLABLE JJYU)

U+CBB8
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JJYU

Programming

C
\uCBB8
JavaScript
\uCBB8
Java
\uCBB8
Json
\uCBB8
Python
\uCBB8
Perl
\x{CBB8}
PHP
\x{CBB8}
Ruby
\u{CBB8}
Rust
\u{CBB8}
Go
\uCBB8

Web

CSS
\00CBB8
HtmlDecimal
쮸
HtmlHexadecimal
쮸
Url
%EC%AE%B8

Code

MD5
abebe5323b63e7aea5b6b918145ef2af
Sha1
7259775816dac93d0d4c3a4d00fc576a5afcba52
Base64
7K64

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCBB8';
console.log(char);  // Output: 쮸

Java:

char c = '\uCBB8';
System.out.println(c);  // Output: 쮸

JSON:

{"text": "\uCBB8"}  // Value: 쮸

Python:

char = '\uCBB8'
print(char)  # Output: 쮸

Perl:

my $char = "\x{CBB8}";
print $char;  # Output: 쮸

PHP:

$char = "\x{CBB8}";
echo $char;  // Output: 쮸

Ruby:

char = "\u{CBB8}"
puts char  # Output: 쮸

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#52152;</p>  <!-- Display: 쮸 -->

HTML Hexadecimal:

<p>HTML hex: &#xCBB8;</p>  <!-- Display: 쮸 -->

URL Encoding:

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

Encodings

MD5:

abebe5323b63e7aea5b6b918145ef2af

SHA1:

7259775816dac93d0d4c3a4d00fc576a5afcba52

Base64:

7K64