Unicode Finder

"땷" U+B577(HANGUL SYLLABLE DDYALH)

U+B577
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DDYALH

Programming

C
\uB577
JavaScript
\uB577
Java
\uB577
Json
\uB577
Python
\uB577
Perl
\x{B577}
PHP
\x{B577}
Ruby
\u{B577}
Rust
\u{B577}
Go
\uB577

Web

CSS
\00B577
HtmlDecimal
땷
HtmlHexadecimal
땷
Url
%EB%95%B7

Code

MD5
40a10bf485c5bf05ce6b1da34b84c7a9
Sha1
021c85bcb621b2ef16107a28d5a7250e3eff538f
Base64
65W3

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB577';
console.log(char);  // Output: 땷

Java:

char c = '\uB577';
System.out.println(c);  // Output: 땷

JSON:

{"text": "\uB577"}  // Value: 땷

Python:

char = '\uB577'
print(char)  # Output: 땷

Perl:

my $char = "\x{B577}";
print $char;  # Output: 땷

PHP:

$char = "\x{B577}";
echo $char;  // Output: 땷

Ruby:

char = "\u{B577}"
puts char  # Output: 땷

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46455;</p>  <!-- Display: 땷 -->

HTML Hexadecimal:

<p>HTML hex: &#xB577;</p>  <!-- Display: 땷 -->

URL Encoding:

// 땷 URL encoding
https://unicodefinder.com/search.php?query=%EB%95%B7

Encodings

MD5:

40a10bf485c5bf05ce6b1da34b84c7a9

SHA1:

021c85bcb621b2ef16107a28d5a7250e3eff538f

Base64:

65W3