Unicode Finder

"텁" U+D141(HANGUL SYLLABLE TEOB)

U+D141
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE TEOB

Programming

C
\uD141
JavaScript
\uD141
Java
\uD141
Json
\uD141
Python
\uD141
Perl
\x{D141}
PHP
\x{D141}
Ruby
\u{D141}
Rust
\u{D141}
Go
\uD141

Web

CSS
\00D141
HtmlDecimal
텁
HtmlHexadecimal
텁
Url
%ED%85%81

Code

MD5
f5d226cf5cf8594d19fe4e39ace537e6
Sha1
87922d6025126c74b25b6e07bef8a79578cb5527
Base64
7YWB

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uD141';
console.log(char);  // Output: 텁

Java:

char c = '\uD141';
System.out.println(c);  // Output: 텁

JSON:

{"text": "\uD141"}  // Value: 텁

Python:

char = '\uD141'
print(char)  # Output: 텁

Perl:

my $char = "\x{D141}";
print $char;  # Output: 텁

PHP:

$char = "\x{D141}";
echo $char;  // Output: 텁

Ruby:

char = "\u{D141}"
puts char  # Output: 텁

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#53569;</p>  <!-- Display: 텁 -->

HTML Hexadecimal:

<p>HTML hex: &#xD141;</p>  <!-- Display: 텁 -->

URL Encoding:

// 텁 URL encoding
https://unicodefinder.com/search.php?query=%ED%85%81

Encodings

MD5:

f5d226cf5cf8594d19fe4e39ace537e6

SHA1:

87922d6025126c74b25b6e07bef8a79578cb5527

Base64:

7YWB