Unicode Finder

"덬" U+B36C(HANGUL SYLLABLE DEOK)

U+B36C
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DEOK

Programming

C
\uB36C
JavaScript
\uB36C
Java
\uB36C
Json
\uB36C
Python
\uB36C
Perl
\x{B36C}
PHP
\x{B36C}
Ruby
\u{B36C}
Rust
\u{B36C}
Go
\uB36C

Web

CSS
\00B36C
HtmlDecimal
덬
HtmlHexadecimal
덬
Url
%EB%8D%AC

Code

MD5
c01a09db1336b64a42c8326e21040b7a
Sha1
111e25e87f0bd117599dad001aedd232ad02856d
Base64
642s

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB36C';
console.log(char);  // Output: 덬

Java:

char c = '\uB36C';
System.out.println(c);  // Output: 덬

JSON:

{"text": "\uB36C"}  // Value: 덬

Python:

char = '\uB36C'
print(char)  # Output: 덬

Perl:

my $char = "\x{B36C}";
print $char;  # Output: 덬

PHP:

$char = "\x{B36C}";
echo $char;  // Output: 덬

Ruby:

char = "\u{B36C}"
puts char  # Output: 덬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45932;</p>  <!-- Display: 덬 -->

HTML Hexadecimal:

<p>HTML hex: &#xB36C;</p>  <!-- Display: 덬 -->

URL Encoding:

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

Encodings

MD5:

c01a09db1336b64a42c8326e21040b7a

SHA1:

111e25e87f0bd117599dad001aedd232ad02856d

Base64:

642s