Unicode Finder

"톋" U+D18B(HANGUL SYLLABLE TYED)

U+D18B
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE TYED

Programming

C
\uD18B
JavaScript
\uD18B
Java
\uD18B
Json
\uD18B
Python
\uD18B
Perl
\x{D18B}
PHP
\x{D18B}
Ruby
\u{D18B}
Rust
\u{D18B}
Go
\uD18B

Web

CSS
\00D18B
HtmlDecimal
톋
HtmlHexadecimal
톋
Url
%ED%86%8B

Code

MD5
ac8c50c32ac11e01841ed0c5582448ed
Sha1
8ce2a8e40d5a04dc758df0e1972928de3d16bd98
Base64
7YaL

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uD18B';
console.log(char);  // Output: 톋

Java:

char c = '\uD18B';
System.out.println(c);  // Output: 톋

JSON:

{"text": "\uD18B"}  // Value: 톋

Python:

char = '\uD18B'
print(char)  # Output: 톋

Perl:

my $char = "\x{D18B}";
print $char;  # Output: 톋

PHP:

$char = "\x{D18B}";
echo $char;  // Output: 톋

Ruby:

char = "\u{D18B}"
puts char  # Output: 톋

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#53643;</p>  <!-- Display: 톋 -->

HTML Hexadecimal:

<p>HTML hex: &#xD18B;</p>  <!-- Display: 톋 -->

URL Encoding:

// 톋 URL encoding
https://unicodefinder.com/search.php?query=%ED%86%8B

Encodings

MD5:

ac8c50c32ac11e01841ed0c5582448ed

SHA1:

8ce2a8e40d5a04dc758df0e1972928de3d16bd98

Base64:

7YaL