Unicode Finder

"퇎" U+D1CE(HANGUL SYLLABLE TWABS)

U+D1CE
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE TWABS

Programming

C
\uD1CE
JavaScript
\uD1CE
Java
\uD1CE
Json
\uD1CE
Python
\uD1CE
Perl
\x{D1CE}
PHP
\x{D1CE}
Ruby
\u{D1CE}
Rust
\u{D1CE}
Go
\uD1CE

Web

CSS
\00D1CE
HtmlDecimal
퇎
HtmlHexadecimal
퇎
Url
%ED%87%8E

Code

MD5
4df53c5e8ef62405f5760dae53270eed
Sha1
b7278d5b745316c132248e3f3892c560c151e9a8
Base64
7YeO

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uD1CE';
console.log(char);  // Output: 퇎

Java:

char c = '\uD1CE';
System.out.println(c);  // Output: 퇎

JSON:

{"text": "\uD1CE"}  // Value: 퇎

Python:

char = '\uD1CE'
print(char)  # Output: 퇎

Perl:

my $char = "\x{D1CE}";
print $char;  # Output: 퇎

PHP:

$char = "\x{D1CE}";
echo $char;  // Output: 퇎

Ruby:

char = "\u{D1CE}"
puts char  # Output: 퇎

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#53710;</p>  <!-- Display: 퇎 -->

HTML Hexadecimal:

<p>HTML hex: &#xD1CE;</p>  <!-- Display: 퇎 -->

URL Encoding:

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

Encodings

MD5:

4df53c5e8ef62405f5760dae53270eed

SHA1:

b7278d5b745316c132248e3f3892c560c151e9a8

Base64:

7YeO