Unicode Finder

"뜎" U+B70E(HANGUL SYLLABLE DDYUGG)

U+B70E
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DDYUGG

Programming

C
\uB70E
JavaScript
\uB70E
Java
\uB70E
Json
\uB70E
Python
\uB70E
Perl
\x{B70E}
PHP
\x{B70E}
Ruby
\u{B70E}
Rust
\u{B70E}
Go
\uB70E

Web

CSS
\00B70E
HtmlDecimal
뜎
HtmlHexadecimal
뜎
Url
%EB%9C%8E

Code

MD5
ec40ce9874e09a7e25f2d4a1db3d6ff4
Sha1
8d18ad17c6d8a890c337d1f488bd00cf6ca31a40
Base64
65yO

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB70E';
console.log(char);  // Output: 뜎

Java:

char c = '\uB70E';
System.out.println(c);  // Output: 뜎

JSON:

{"text": "\uB70E"}  // Value: 뜎

Python:

char = '\uB70E'
print(char)  # Output: 뜎

Perl:

my $char = "\x{B70E}";
print $char;  # Output: 뜎

PHP:

$char = "\x{B70E}";
echo $char;  // Output: 뜎

Ruby:

char = "\u{B70E}"
puts char  # Output: 뜎

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46862;</p>  <!-- Display: 뜎 -->

HTML Hexadecimal:

<p>HTML hex: &#xB70E;</p>  <!-- Display: 뜎 -->

URL Encoding:

// 뜎 URL encoding
https://unicodefinder.com/search.php?query=%EB%9C%8E

Encodings

MD5:

ec40ce9874e09a7e25f2d4a1db3d6ff4

SHA1:

8d18ad17c6d8a890c337d1f488bd00cf6ca31a40

Base64:

65yO