Unicode Finder

"덯" U+B36F(HANGUL SYLLABLE DEOH)

U+B36F
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DEOH

Programming

C
\uB36F
JavaScript
\uB36F
Java
\uB36F
Json
\uB36F
Python
\uB36F
Perl
\x{B36F}
PHP
\x{B36F}
Ruby
\u{B36F}
Rust
\u{B36F}
Go
\uB36F

Web

CSS
\00B36F
HtmlDecimal
덯
HtmlHexadecimal
덯
Url
%EB%8D%AF

Code

MD5
8a5fdcbaa5ebcf849c68e12377db7283
Sha1
73ff7ef6ecacd83105e460161995a815c2df07be
Base64
642v

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB36F';
console.log(char);  // Output: 덯

Java:

char c = '\uB36F';
System.out.println(c);  // Output: 덯

JSON:

{"text": "\uB36F"}  // Value: 덯

Python:

char = '\uB36F'
print(char)  # Output: 덯

Perl:

my $char = "\x{B36F}";
print $char;  # Output: 덯

PHP:

$char = "\x{B36F}";
echo $char;  // Output: 덯

Ruby:

char = "\u{B36F}"
puts char  # Output: 덯

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45935;</p>  <!-- Display: 덯 -->

HTML Hexadecimal:

<p>HTML hex: &#xB36F;</p>  <!-- Display: 덯 -->

URL Encoding:

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

Encodings

MD5:

8a5fdcbaa5ebcf849c68e12377db7283

SHA1:

73ff7ef6ecacd83105e460161995a815c2df07be

Base64:

642v