Unicode Finder

"줕" U+C915(HANGUL SYLLABLE JUT)

U+C915
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JUT

Programming

C
\uC915
JavaScript
\uC915
Java
\uC915
Json
\uC915
Python
\uC915
Perl
\x{C915}
PHP
\x{C915}
Ruby
\u{C915}
Rust
\u{C915}
Go
\uC915

Web

CSS
\00C915
HtmlDecimal
줕
HtmlHexadecimal
줕
Url
%EC%A4%95

Code

MD5
33892da0efc429bdd217978d66b8abaa
Sha1
1f5695980a35b200e7edbcd5e5b35037181d0164
Base64
7KSV

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC915';
console.log(char);  // Output: 줕

Java:

char c = '\uC915';
System.out.println(c);  // Output: 줕

JSON:

{"text": "\uC915"}  // Value: 줕

Python:

char = '\uC915'
print(char)  # Output: 줕

Perl:

my $char = "\x{C915}";
print $char;  # Output: 줕

PHP:

$char = "\x{C915}";
echo $char;  // Output: 줕

Ruby:

char = "\u{C915}"
puts char  # Output: 줕

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51477;</p>  <!-- Display: 줕 -->

HTML Hexadecimal:

<p>HTML hex: &#xC915;</p>  <!-- Display: 줕 -->

URL Encoding:

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

Encodings

MD5:

33892da0efc429bdd217978d66b8abaa

SHA1:

1f5695980a35b200e7edbcd5e5b35037181d0164

Base64:

7KSV