Unicode Finder

"뗱" U+B5F1(HANGUL SYLLABLE DDYEOT)

U+B5F1
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DDYEOT

Programming

C
\uB5F1
JavaScript
\uB5F1
Java
\uB5F1
Json
\uB5F1
Python
\uB5F1
Perl
\x{B5F1}
PHP
\x{B5F1}
Ruby
\u{B5F1}
Rust
\u{B5F1}
Go
\uB5F1

Web

CSS
\00B5F1
HtmlDecimal
뗱
HtmlHexadecimal
뗱
Url
%EB%97%B1

Code

MD5
5a4b8e53d65a4a6b429bfcf852166138
Sha1
c6e001cc063e381b38a538ed77885b64a141d7c6
Base64
65ex

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB5F1';
console.log(char);  // Output: 뗱

Java:

char c = '\uB5F1';
System.out.println(c);  // Output: 뗱

JSON:

{"text": "\uB5F1"}  // Value: 뗱

Python:

char = '\uB5F1'
print(char)  # Output: 뗱

Perl:

my $char = "\x{B5F1}";
print $char;  # Output: 뗱

PHP:

$char = "\x{B5F1}";
echo $char;  // Output: 뗱

Ruby:

char = "\u{B5F1}"
puts char  # Output: 뗱

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46577;</p>  <!-- Display: 뗱 -->

HTML Hexadecimal:

<p>HTML hex: &#xB5F1;</p>  <!-- Display: 뗱 -->

URL Encoding:

// 뗱 URL encoding
https://unicodefinder.com/search.php?query=%EB%97%B1

Encodings

MD5:

5a4b8e53d65a4a6b429bfcf852166138

SHA1:

c6e001cc063e381b38a538ed77885b64a141d7c6

Base64:

65ex