Unicode Finder

"똯" U+B62F(HANGUL SYLLABLE DDWAGS)

U+B62F
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DDWAGS

Programming

C
\uB62F
JavaScript
\uB62F
Java
\uB62F
Json
\uB62F
Python
\uB62F
Perl
\x{B62F}
PHP
\x{B62F}
Ruby
\u{B62F}
Rust
\u{B62F}
Go
\uB62F

Web

CSS
\00B62F
HtmlDecimal
똯
HtmlHexadecimal
똯
Url
%EB%98%AF

Code

MD5
c4d90d923dbf70eca764c500be25dd25
Sha1
59068380a3c73b0f3f35ab90be73d1f00ba6fb81
Base64
65iv

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB62F';
console.log(char);  // Output: 똯

Java:

char c = '\uB62F';
System.out.println(c);  // Output: 똯

JSON:

{"text": "\uB62F"}  // Value: 똯

Python:

char = '\uB62F'
print(char)  # Output: 똯

Perl:

my $char = "\x{B62F}";
print $char;  # Output: 똯

PHP:

$char = "\x{B62F}";
echo $char;  // Output: 똯

Ruby:

char = "\u{B62F}"
puts char  # Output: 똯

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46639;</p>  <!-- Display: 똯 -->

HTML Hexadecimal:

<p>HTML hex: &#xB62F;</p>  <!-- Display: 똯 -->

URL Encoding:

// 똯 URL encoding
https://unicodefinder.com/search.php?query=%EB%98%AF

Encodings

MD5:

c4d90d923dbf70eca764c500be25dd25

SHA1:

59068380a3c73b0f3f35ab90be73d1f00ba6fb81

Base64:

65iv