Unicode Finder

"틾" U+D2FE(HANGUL SYLLABLE TILP)

U+D2FE
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE TILP

Programming

C
\uD2FE
JavaScript
\uD2FE
Java
\uD2FE
Json
\uD2FE
Python
\uD2FE
Perl
\x{D2FE}
PHP
\x{D2FE}
Ruby
\u{D2FE}
Rust
\u{D2FE}
Go
\uD2FE

Web

CSS
\00D2FE
HtmlDecimal
틾
HtmlHexadecimal
틾
Url
%ED%8B%BE

Code

MD5
c98d305a0e934fc92d35a130a6d6be8f
Sha1
ce1d1661a22bcaad6cd919eb4820d3cbd7584dc8
Base64
7Yu+

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uD2FE';
console.log(char);  // Output: 틾

Java:

char c = '\uD2FE';
System.out.println(c);  // Output: 틾

JSON:

{"text": "\uD2FE"}  // Value: 틾

Python:

char = '\uD2FE'
print(char)  # Output: 틾

Perl:

my $char = "\x{D2FE}";
print $char;  # Output: 틾

PHP:

$char = "\x{D2FE}";
echo $char;  // Output: 틾

Ruby:

char = "\u{D2FE}"
puts char  # Output: 틾

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#54014;</p>  <!-- Display: 틾 -->

HTML Hexadecimal:

<p>HTML hex: &#xD2FE;</p>  <!-- Display: 틾 -->

URL Encoding:

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

Encodings

MD5:

c98d305a0e934fc92d35a130a6d6be8f

SHA1:

ce1d1661a22bcaad6cd919eb4820d3cbd7584dc8

Base64:

7Yu+