Unicode Finder

"턯" U+D12F(HANGUL SYLLABLE TYAEH)

U+D12F
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE TYAEH

Programming

C
\uD12F
JavaScript
\uD12F
Java
\uD12F
Json
\uD12F
Python
\uD12F
Perl
\x{D12F}
PHP
\x{D12F}
Ruby
\u{D12F}
Rust
\u{D12F}
Go
\uD12F

Web

CSS
\00D12F
HtmlDecimal
턯
HtmlHexadecimal
턯
Url
%ED%84%AF

Code

MD5
d215456f7fe2342a9aeeec2da744917d
Sha1
d2ec23cdab2f2c6799d3601b040e1bf1b3aed685
Base64
7YSv

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uD12F';
console.log(char);  // Output: 턯

Java:

char c = '\uD12F';
System.out.println(c);  // Output: 턯

JSON:

{"text": "\uD12F"}  // Value: 턯

Python:

char = '\uD12F'
print(char)  # Output: 턯

Perl:

my $char = "\x{D12F}";
print $char;  # Output: 턯

PHP:

$char = "\x{D12F}";
echo $char;  // Output: 턯

Ruby:

char = "\u{D12F}"
puts char  # Output: 턯

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#53551;</p>  <!-- Display: 턯 -->

HTML Hexadecimal:

<p>HTML hex: &#xD12F;</p>  <!-- Display: 턯 -->

URL Encoding:

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

Encodings

MD5:

d215456f7fe2342a9aeeec2da744917d

SHA1:

d2ec23cdab2f2c6799d3601b040e1bf1b3aed685

Base64:

7YSv