Unicode Finder

"더" U+B354(HANGUL SYLLABLE DEO)

U+B354
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DEO

Programming

C
\uB354
JavaScript
\uB354
Java
\uB354
Json
\uB354
Python
\uB354
Perl
\x{B354}
PHP
\x{B354}
Ruby
\u{B354}
Rust
\u{B354}
Go
\uB354

Web

CSS
\00B354
HtmlDecimal
더
HtmlHexadecimal
더
Url
%EB%8D%94

Code

MD5
690a71516069cd34c2737e598d48980b
Sha1
a20f2464c8f1e1d1897eee6a644b553e50257fbe
Base64
642U

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB354';
console.log(char);  // Output: 더

Java:

char c = '\uB354';
System.out.println(c);  // Output: 더

JSON:

{"text": "\uB354"}  // Value: 더

Python:

char = '\uB354'
print(char)  # Output: 더

Perl:

my $char = "\x{B354}";
print $char;  # Output: 더

PHP:

$char = "\x{B354}";
echo $char;  // Output: 더

Ruby:

char = "\u{B354}"
puts char  # Output: 더

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45908;</p>  <!-- Display: 더 -->

HTML Hexadecimal:

<p>HTML hex: &#xB354;</p>  <!-- Display: 더 -->

URL Encoding:

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

Encodings

MD5:

690a71516069cd34c2737e598d48980b

SHA1:

a20f2464c8f1e1d1897eee6a644b553e50257fbe

Base64:

642U