Unicode Finder

"퇞" U+D1DE(HANGUL SYLLABLE TWAENH)

U+D1DE
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE TWAENH

Programming

C
\uD1DE
JavaScript
\uD1DE
Java
\uD1DE
Json
\uD1DE
Python
\uD1DE
Perl
\x{D1DE}
PHP
\x{D1DE}
Ruby
\u{D1DE}
Rust
\u{D1DE}
Go
\uD1DE

Web

CSS
\00D1DE
HtmlDecimal
퇞
HtmlHexadecimal
퇞
Url
%ED%87%9E

Code

MD5
7a41a69132cf85c3141da9da43bb071c
Sha1
3de930a2a827a8f8d8469468f35cf02de71aadb1
Base64
7Yee

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uD1DE';
console.log(char);  // Output: 퇞

Java:

char c = '\uD1DE';
System.out.println(c);  // Output: 퇞

JSON:

{"text": "\uD1DE"}  // Value: 퇞

Python:

char = '\uD1DE'
print(char)  # Output: 퇞

Perl:

my $char = "\x{D1DE}";
print $char;  # Output: 퇞

PHP:

$char = "\x{D1DE}";
echo $char;  // Output: 퇞

Ruby:

char = "\u{D1DE}"
puts char  # Output: 퇞

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#53726;</p>  <!-- Display: 퇞 -->

HTML Hexadecimal:

<p>HTML hex: &#xD1DE;</p>  <!-- Display: 퇞 -->

URL Encoding:

// 퇞 URL encoding
https://unicodefinder.com/search.php?query=%ED%87%9E

Encodings

MD5:

7a41a69132cf85c3141da9da43bb071c

SHA1:

3de930a2a827a8f8d8469468f35cf02de71aadb1

Base64:

7Yee