Unicode Finder

"틬" U+D2EC(HANGUL SYLLABLE TYIK)

U+D2EC
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE TYIK

Programming

C
\uD2EC
JavaScript
\uD2EC
Java
\uD2EC
Json
\uD2EC
Python
\uD2EC
Perl
\x{D2EC}
PHP
\x{D2EC}
Ruby
\u{D2EC}
Rust
\u{D2EC}
Go
\uD2EC

Web

CSS
\00D2EC
HtmlDecimal
틬
HtmlHexadecimal
틬
Url
%ED%8B%AC

Code

MD5
09f45f8ca292ba437bc215d080617138
Sha1
365c64ad025b9467c8a68f75f757e0749ac59d40
Base64
7Yus

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uD2EC';
console.log(char);  // Output: 틬

Java:

char c = '\uD2EC';
System.out.println(c);  // Output: 틬

JSON:

{"text": "\uD2EC"}  // Value: 틬

Python:

char = '\uD2EC'
print(char)  # Output: 틬

Perl:

my $char = "\x{D2EC}";
print $char;  # Output: 틬

PHP:

$char = "\x{D2EC}";
echo $char;  // Output: 틬

Ruby:

char = "\u{D2EC}"
puts char  # Output: 틬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#53996;</p>  <!-- Display: 틬 -->

HTML Hexadecimal:

<p>HTML hex: &#xD2EC;</p>  <!-- Display: 틬 -->

URL Encoding:

// 틬 URL encoding
https://unicodefinder.com/search.php?query=%ED%8B%AC

Encodings

MD5:

09f45f8ca292ba437bc215d080617138

SHA1:

365c64ad025b9467c8a68f75f757e0749ac59d40

Base64:

7Yus