Unicode Finder

"큘" U+D058(HANGUL SYLLABLE KYUL)

U+D058
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE KYUL

Programming

C
\uD058
JavaScript
\uD058
Java
\uD058
Json
\uD058
Python
\uD058
Perl
\x{D058}
PHP
\x{D058}
Ruby
\u{D058}
Rust
\u{D058}
Go
\uD058

Web

CSS
\00D058
HtmlDecimal
큘
HtmlHexadecimal
큘
Url
%ED%81%98

Code

MD5
9d6e90962ec1afb24c901ee1f54aaf42
Sha1
fa85543b616f4b2de34a2d85c20faa238f1649bc
Base64
7YGY

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uD058';
console.log(char);  // Output: 큘

Java:

char c = '\uD058';
System.out.println(c);  // Output: 큘

JSON:

{"text": "\uD058"}  // Value: 큘

Python:

char = '\uD058'
print(char)  # Output: 큘

Perl:

my $char = "\x{D058}";
print $char;  # Output: 큘

PHP:

$char = "\x{D058}";
echo $char;  // Output: 큘

Ruby:

char = "\u{D058}"
puts char  # Output: 큘

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#53336;</p>  <!-- Display: 큘 -->

HTML Hexadecimal:

<p>HTML hex: &#xD058;</p>  <!-- Display: 큘 -->

URL Encoding:

// 큘 URL encoding
https://unicodefinder.com/search.php?query=%ED%81%98

Encodings

MD5:

9d6e90962ec1afb24c901ee1f54aaf42

SHA1:

fa85543b616f4b2de34a2d85c20faa238f1649bc

Base64:

7YGY