Unicode Finder

"츲" U+CE32(HANGUL SYLLABLE CEUBS)

U+CE32
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE CEUBS

Programming

C
\uCE32
JavaScript
\uCE32
Java
\uCE32
Json
\uCE32
Python
\uCE32
Perl
\x{CE32}
PHP
\x{CE32}
Ruby
\u{CE32}
Rust
\u{CE32}
Go
\uCE32

Web

CSS
\00CE32
HtmlDecimal
츲
HtmlHexadecimal
츲
Url
%EC%B8%B2

Code

MD5
fc5788b91955ed5752d1907380b47ad5
Sha1
be09ed62c5d308d56157200f539c5521fc362f52
Base64
7Liy

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCE32';
console.log(char);  // Output: 츲

Java:

char c = '\uCE32';
System.out.println(c);  // Output: 츲

JSON:

{"text": "\uCE32"}  // Value: 츲

Python:

char = '\uCE32'
print(char)  # Output: 츲

Perl:

my $char = "\x{CE32}";
print $char;  # Output: 츲

PHP:

$char = "\x{CE32}";
echo $char;  // Output: 츲

Ruby:

char = "\u{CE32}"
puts char  # Output: 츲

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#52786;</p>  <!-- Display: 츲 -->

HTML Hexadecimal:

<p>HTML hex: &#xCE32;</p>  <!-- Display: 츲 -->

URL Encoding:

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

Encodings

MD5:

fc5788b91955ed5752d1907380b47ad5

SHA1:

be09ed62c5d308d56157200f539c5521fc362f52

Base64:

7Liy