Unicode Finder

"즐" U+C990(HANGUL SYLLABLE JEUL)

U+C990
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JEUL

Programming

C
\uC990
JavaScript
\uC990
Java
\uC990
Json
\uC990
Python
\uC990
Perl
\x{C990}
PHP
\x{C990}
Ruby
\u{C990}
Rust
\u{C990}
Go
\uC990

Web

CSS
\00C990
HtmlDecimal
즐
HtmlHexadecimal
즐
Url
%EC%A6%90

Code

MD5
31730a9422a8ed8446cb4c4a8a087e2b
Sha1
2f9451ba9c7108556ce5d5b25d11f4ed31cbbe04
Base64
7KaQ

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC990';
console.log(char);  // Output: 즐

Java:

char c = '\uC990';
System.out.println(c);  // Output: 즐

JSON:

{"text": "\uC990"}  // Value: 즐

Python:

char = '\uC990'
print(char)  # Output: 즐

Perl:

my $char = "\x{C990}";
print $char;  # Output: 즐

PHP:

$char = "\x{C990}";
echo $char;  // Output: 즐

Ruby:

char = "\u{C990}"
puts char  # Output: 즐

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51600;</p>  <!-- Display: 즐 -->

HTML Hexadecimal:

<p>HTML hex: &#xC990;</p>  <!-- Display: 즐 -->

URL Encoding:

// 즐 URL encoding
https://unicodefinder.com/search.php?query=%EC%A6%90

Encodings

MD5:

31730a9422a8ed8446cb4c4a8a087e2b

SHA1:

2f9451ba9c7108556ce5d5b25d11f4ed31cbbe04

Base64:

7KaQ