Unicode Finder

"튮" U+D2AE(HANGUL SYLLABLE TYUBS)

U+D2AE
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE TYUBS

Programming

C
\uD2AE
JavaScript
\uD2AE
Java
\uD2AE
Json
\uD2AE
Python
\uD2AE
Perl
\x{D2AE}
PHP
\x{D2AE}
Ruby
\u{D2AE}
Rust
\u{D2AE}
Go
\uD2AE

Web

CSS
\00D2AE
HtmlDecimal
튮
HtmlHexadecimal
튮
Url
%ED%8A%AE

Code

MD5
69a65e155b7ca362a72ba2a0d2e2f666
Sha1
8b60637fba8ff9e7e4f2f2ca75fc31a77e3a01e6
Base64
7Yqu

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uD2AE';
console.log(char);  // Output: 튮

Java:

char c = '\uD2AE';
System.out.println(c);  // Output: 튮

JSON:

{"text": "\uD2AE"}  // Value: 튮

Python:

char = '\uD2AE'
print(char)  # Output: 튮

Perl:

my $char = "\x{D2AE}";
print $char;  # Output: 튮

PHP:

$char = "\x{D2AE}";
echo $char;  // Output: 튮

Ruby:

char = "\u{D2AE}"
puts char  # Output: 튮

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#53934;</p>  <!-- Display: 튮 -->

HTML Hexadecimal:

<p>HTML hex: &#xD2AE;</p>  <!-- Display: 튮 -->

URL Encoding:

// 튮 URL encoding
https://unicodefinder.com/search.php?query=%ED%8A%AE

Encodings

MD5:

69a65e155b7ca362a72ba2a0d2e2f666

SHA1:

8b60637fba8ff9e7e4f2f2ca75fc31a77e3a01e6

Base64:

7Yqu