Unicode Finder

"틭" U+D2ED(HANGUL SYLLABLE TYIT)

U+D2ED
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE TYIT

Programming

C
\uD2ED
JavaScript
\uD2ED
Java
\uD2ED
Json
\uD2ED
Python
\uD2ED
Perl
\x{D2ED}
PHP
\x{D2ED}
Ruby
\u{D2ED}
Rust
\u{D2ED}
Go
\uD2ED

Web

CSS
\00D2ED
HtmlDecimal
틭
HtmlHexadecimal
틭
Url
%ED%8B%AD

Code

MD5
863aa6c56dcfd35508bb162076eb3db2
Sha1
7a5ce0ac7a15afd0b03faf449bf939a744dff1a5
Base64
7Yut

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uD2ED';
console.log(char);  // Output: 틭

Java:

char c = '\uD2ED';
System.out.println(c);  // Output: 틭

JSON:

{"text": "\uD2ED"}  // Value: 틭

Python:

char = '\uD2ED'
print(char)  # Output: 틭

Perl:

my $char = "\x{D2ED}";
print $char;  # Output: 틭

PHP:

$char = "\x{D2ED}";
echo $char;  // Output: 틭

Ruby:

char = "\u{D2ED}"
puts char  # Output: 틭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#53997;</p>  <!-- Display: 틭 -->

HTML Hexadecimal:

<p>HTML hex: &#xD2ED;</p>  <!-- Display: 틭 -->

URL Encoding:

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

Encodings

MD5:

863aa6c56dcfd35508bb162076eb3db2

SHA1:

7a5ce0ac7a15afd0b03faf449bf939a744dff1a5

Base64:

7Yut