Unicode Finder

"줏" U+C90F(HANGUL SYLLABLE JUS)

U+C90F
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JUS

Programming

C
\uC90F
JavaScript
\uC90F
Java
\uC90F
Json
\uC90F
Python
\uC90F
Perl
\x{C90F}
PHP
\x{C90F}
Ruby
\u{C90F}
Rust
\u{C90F}
Go
\uC90F

Web

CSS
\00C90F
HtmlDecimal
줏
HtmlHexadecimal
줏
Url
%EC%A4%8F

Code

MD5
d3af3017a39a85b36fc0cf46c3023429
Sha1
7098384bdbc7e667201eafcb1fe193ac03ddf121
Base64
7KSP

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC90F';
console.log(char);  // Output: 줏

Java:

char c = '\uC90F';
System.out.println(c);  // Output: 줏

JSON:

{"text": "\uC90F"}  // Value: 줏

Python:

char = '\uC90F'
print(char)  # Output: 줏

Perl:

my $char = "\x{C90F}";
print $char;  # Output: 줏

PHP:

$char = "\x{C90F}";
echo $char;  // Output: 줏

Ruby:

char = "\u{C90F}"
puts char  # Output: 줏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51471;</p>  <!-- Display: 줏 -->

HTML Hexadecimal:

<p>HTML hex: &#xC90F;</p>  <!-- Display: 줏 -->

URL Encoding:

// 줏 URL encoding
https://unicodefinder.com/search.php?query=%EC%A4%8F

Encodings

MD5:

d3af3017a39a85b36fc0cf46c3023429

SHA1:

7098384bdbc7e667201eafcb1fe193ac03ddf121

Base64:

7KSP