Unicode Finder

"땏" U+B54F(HANGUL SYLLABLE DDAEGS)

U+B54F
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DDAEGS

Programming

C
\uB54F
JavaScript
\uB54F
Java
\uB54F
Json
\uB54F
Python
\uB54F
Perl
\x{B54F}
PHP
\x{B54F}
Ruby
\u{B54F}
Rust
\u{B54F}
Go
\uB54F

Web

CSS
\00B54F
HtmlDecimal
땏
HtmlHexadecimal
땏
Url
%EB%95%8F

Code

MD5
21b44062eb898f9d6787be3c7e328ad4
Sha1
3d948c7b50ac7f0da18dc1f422d964e37091985e
Base64
65WP

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB54F';
console.log(char);  // Output: 땏

Java:

char c = '\uB54F';
System.out.println(c);  // Output: 땏

JSON:

{"text": "\uB54F"}  // Value: 땏

Python:

char = '\uB54F'
print(char)  # Output: 땏

Perl:

my $char = "\x{B54F}";
print $char;  # Output: 땏

PHP:

$char = "\x{B54F}";
echo $char;  // Output: 땏

Ruby:

char = "\u{B54F}"
puts char  # Output: 땏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46415;</p>  <!-- Display: 땏 -->

HTML Hexadecimal:

<p>HTML hex: &#xB54F;</p>  <!-- Display: 땏 -->

URL Encoding:

// 땏 URL encoding
https://unicodefinder.com/search.php?query=%EB%95%8F

Encodings

MD5:

21b44062eb898f9d6787be3c7e328ad4

SHA1:

3d948c7b50ac7f0da18dc1f422d964e37091985e

Base64:

65WP