Unicode Finder

"텂" U+D142(HANGUL SYLLABLE TEOBS)

U+D142
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE TEOBS

Programming

C
\uD142
JavaScript
\uD142
Java
\uD142
Json
\uD142
Python
\uD142
Perl
\x{D142}
PHP
\x{D142}
Ruby
\u{D142}
Rust
\u{D142}
Go
\uD142

Web

CSS
\00D142
HtmlDecimal
텂
HtmlHexadecimal
텂
Url
%ED%85%82

Code

MD5
96297323737161692c5e0839834de5ff
Sha1
10602d8d2b4bfa62baaa45200310fbf2328bf606
Base64
7YWC

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uD142';
console.log(char);  // Output: 텂

Java:

char c = '\uD142';
System.out.println(c);  // Output: 텂

JSON:

{"text": "\uD142"}  // Value: 텂

Python:

char = '\uD142'
print(char)  # Output: 텂

Perl:

my $char = "\x{D142}";
print $char;  # Output: 텂

PHP:

$char = "\x{D142}";
echo $char;  // Output: 텂

Ruby:

char = "\u{D142}"
puts char  # Output: 텂

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#53570;</p>  <!-- Display: 텂 -->

HTML Hexadecimal:

<p>HTML hex: &#xD142;</p>  <!-- Display: 텂 -->

URL Encoding:

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

Encodings

MD5:

96297323737161692c5e0839834de5ff

SHA1:

10602d8d2b4bfa62baaa45200310fbf2328bf606

Base64:

7YWC