Unicode Finder

"툧" U+D227(HANGUL SYLLABLE TYOC)

U+D227
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE TYOC

Programming

C
\uD227
JavaScript
\uD227
Java
\uD227
Json
\uD227
Python
\uD227
Perl
\x{D227}
PHP
\x{D227}
Ruby
\u{D227}
Rust
\u{D227}
Go
\uD227

Web

CSS
\00D227
HtmlDecimal
툧
HtmlHexadecimal
툧
Url
%ED%88%A7

Code

MD5
56409f3a0dd90cbd2da37f7d38c0e757
Sha1
e393208977f566779f9eb72ebce1ceafafe0918e
Base64
7Yin

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uD227';
console.log(char);  // Output: 툧

Java:

char c = '\uD227';
System.out.println(c);  // Output: 툧

JSON:

{"text": "\uD227"}  // Value: 툧

Python:

char = '\uD227'
print(char)  # Output: 툧

Perl:

my $char = "\x{D227}";
print $char;  # Output: 툧

PHP:

$char = "\x{D227}";
echo $char;  // Output: 툧

Ruby:

char = "\u{D227}"
puts char  # Output: 툧

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#53799;</p>  <!-- Display: 툧 -->

HTML Hexadecimal:

<p>HTML hex: &#xD227;</p>  <!-- Display: 툧 -->

URL Encoding:

// 툧 URL encoding
https://unicodefinder.com/search.php?query=%ED%88%A7

Encodings

MD5:

56409f3a0dd90cbd2da37f7d38c0e757

SHA1:

e393208977f566779f9eb72ebce1ceafafe0918e

Base64:

7Yin