Unicode Finder

"툜" U+D21C(HANGUL SYLLABLE TYOLS)

U+D21C
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE TYOLS

Programming

C
\uD21C
JavaScript
\uD21C
Java
\uD21C
Json
\uD21C
Python
\uD21C
Perl
\x{D21C}
PHP
\x{D21C}
Ruby
\u{D21C}
Rust
\u{D21C}
Go
\uD21C

Web

CSS
\00D21C
HtmlDecimal
툜
HtmlHexadecimal
툜
Url
%ED%88%9C

Code

MD5
ed713eeb44202a4a3c812376ae815ba6
Sha1
9e7f62e6a1cdcbe300b032948b4eeb047e5df29c
Base64
7Yic

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uD21C';
console.log(char);  // Output: 툜

Java:

char c = '\uD21C';
System.out.println(c);  // Output: 툜

JSON:

{"text": "\uD21C"}  // Value: 툜

Python:

char = '\uD21C'
print(char)  # Output: 툜

Perl:

my $char = "\x{D21C}";
print $char;  # Output: 툜

PHP:

$char = "\x{D21C}";
echo $char;  // Output: 툜

Ruby:

char = "\u{D21C}"
puts char  # Output: 툜

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#53788;</p>  <!-- Display: 툜 -->

HTML Hexadecimal:

<p>HTML hex: &#xD21C;</p>  <!-- Display: 툜 -->

URL Encoding:

// 툜 URL encoding
https://unicodefinder.com/search.php?query=%ED%88%9C

Encodings

MD5:

ed713eeb44202a4a3c812376ae815ba6

SHA1:

9e7f62e6a1cdcbe300b032948b4eeb047e5df29c

Base64:

7Yic