Unicode Finder

"턓" U+D113(HANGUL SYLLABLE TYAH)

U+D113
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE TYAH

Programming

C
\uD113
JavaScript
\uD113
Java
\uD113
Json
\uD113
Python
\uD113
Perl
\x{D113}
PHP
\x{D113}
Ruby
\u{D113}
Rust
\u{D113}
Go
\uD113

Web

CSS
\00D113
HtmlDecimal
턓
HtmlHexadecimal
턓
Url
%ED%84%93

Code

MD5
da204831fefd91075c06c86df11c508e
Sha1
a873e3dc8894c158b6a8ed49dbcc1d904e9cdd47
Base64
7YST

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uD113';
console.log(char);  // Output: 턓

Java:

char c = '\uD113';
System.out.println(c);  // Output: 턓

JSON:

{"text": "\uD113"}  // Value: 턓

Python:

char = '\uD113'
print(char)  # Output: 턓

Perl:

my $char = "\x{D113}";
print $char;  # Output: 턓

PHP:

$char = "\x{D113}";
echo $char;  // Output: 턓

Ruby:

char = "\u{D113}"
puts char  # Output: 턓

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#53523;</p>  <!-- Display: 턓 -->

HTML Hexadecimal:

<p>HTML hex: &#xD113;</p>  <!-- Display: 턓 -->

URL Encoding:

// 턓 URL encoding
https://unicodefinder.com/search.php?query=%ED%84%93

Encodings

MD5:

da204831fefd91075c06c86df11c508e

SHA1:

a873e3dc8894c158b6a8ed49dbcc1d904e9cdd47

Base64:

7YST