Unicode Finder

"둋" U+B44B(HANGUL SYLLABLE DYOC)

U+B44B
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DYOC

Programming

C
\uB44B
JavaScript
\uB44B
Java
\uB44B
Json
\uB44B
Python
\uB44B
Perl
\x{B44B}
PHP
\x{B44B}
Ruby
\u{B44B}
Rust
\u{B44B}
Go
\uB44B

Web

CSS
\00B44B
HtmlDecimal
둋
HtmlHexadecimal
둋
Url
%EB%91%8B

Code

MD5
6d2642a0fe96fde29ec881d43d1bd83d
Sha1
dcdb84409a5869b44c44d61cd3bfdc28b59bd9da
Base64
65GL

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB44B';
console.log(char);  // Output: 둋

Java:

char c = '\uB44B';
System.out.println(c);  // Output: 둋

JSON:

{"text": "\uB44B"}  // Value: 둋

Python:

char = '\uB44B'
print(char)  # Output: 둋

Perl:

my $char = "\x{B44B}";
print $char;  # Output: 둋

PHP:

$char = "\x{B44B}";
echo $char;  // Output: 둋

Ruby:

char = "\u{B44B}"
puts char  # Output: 둋

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46155;</p>  <!-- Display: 둋 -->

HTML Hexadecimal:

<p>HTML hex: &#xB44B;</p>  <!-- Display: 둋 -->

URL Encoding:

// 둋 URL encoding
https://unicodefinder.com/search.php?query=%EB%91%8B

Encodings

MD5:

6d2642a0fe96fde29ec881d43d1bd83d

SHA1:

dcdb84409a5869b44c44d61cd3bfdc28b59bd9da

Base64:

65GL