Unicode Finder

"쮕" U+CB95(HANGUL SYLLABLE JJWENG)

U+CB95
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JJWENG

Programming

C
\uCB95
JavaScript
\uCB95
Java
\uCB95
Json
\uCB95
Python
\uCB95
Perl
\x{CB95}
PHP
\x{CB95}
Ruby
\u{CB95}
Rust
\u{CB95}
Go
\uCB95

Web

CSS
\00CB95
HtmlDecimal
쮕
HtmlHexadecimal
쮕
Url
%EC%AE%95

Code

MD5
99d44510483291c1d0058ab175dd5df0
Sha1
f469c1a6684aca336e0fade2d9bca494b6c80ffb
Base64
7K6V

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCB95';
console.log(char);  // Output: 쮕

Java:

char c = '\uCB95';
System.out.println(c);  // Output: 쮕

JSON:

{"text": "\uCB95"}  // Value: 쮕

Python:

char = '\uCB95'
print(char)  # Output: 쮕

Perl:

my $char = "\x{CB95}";
print $char;  # Output: 쮕

PHP:

$char = "\x{CB95}";
echo $char;  // Output: 쮕

Ruby:

char = "\u{CB95}"
puts char  # Output: 쮕

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#52117;</p>  <!-- Display: 쮕 -->

HTML Hexadecimal:

<p>HTML hex: &#xCB95;</p>  <!-- Display: 쮕 -->

URL Encoding:

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

Encodings

MD5:

99d44510483291c1d0058ab175dd5df0

SHA1:

f469c1a6684aca336e0fade2d9bca494b6c80ffb

Base64:

7K6V