Unicode Finder

"덻" U+B37B(HANGUL SYLLABLE DELB)

U+B37B
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DELB

Programming

C
\uB37B
JavaScript
\uB37B
Java
\uB37B
Json
\uB37B
Python
\uB37B
Perl
\x{B37B}
PHP
\x{B37B}
Ruby
\u{B37B}
Rust
\u{B37B}
Go
\uB37B

Web

CSS
\00B37B
HtmlDecimal
덻
HtmlHexadecimal
덻
Url
%EB%8D%BB

Code

MD5
a4ca793f65ca65fcee5ec26a6877ad11
Sha1
424cb0ceb9a68e69c7243f4146c294ee21fe7ecd
Base64
6427

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB37B';
console.log(char);  // Output: 덻

Java:

char c = '\uB37B';
System.out.println(c);  // Output: 덻

JSON:

{"text": "\uB37B"}  // Value: 덻

Python:

char = '\uB37B'
print(char)  # Output: 덻

Perl:

my $char = "\x{B37B}";
print $char;  # Output: 덻

PHP:

$char = "\x{B37B}";
echo $char;  // Output: 덻

Ruby:

char = "\u{B37B}"
puts char  # Output: 덻

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45947;</p>  <!-- Display: 덻 -->

HTML Hexadecimal:

<p>HTML hex: &#xB37B;</p>  <!-- Display: 덻 -->

URL Encoding:

// 덻 URL encoding
https://unicodefinder.com/search.php?query=%EB%8D%BB

Encodings

MD5:

a4ca793f65ca65fcee5ec26a6877ad11

SHA1:

424cb0ceb9a68e69c7243f4146c294ee21fe7ecd

Base64:

6427