Unicode Finder

"뗼" U+B5FC(HANGUL SYLLABLE DDYEL)

U+B5FC
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DDYEL

Programming

C
\uB5FC
JavaScript
\uB5FC
Java
\uB5FC
Json
\uB5FC
Python
\uB5FC
Perl
\x{B5FC}
PHP
\x{B5FC}
Ruby
\u{B5FC}
Rust
\u{B5FC}
Go
\uB5FC

Web

CSS
\00B5FC
HtmlDecimal
뗼
HtmlHexadecimal
뗼
Url
%EB%97%BC

Code

MD5
81ec698eff16d64edb9929ff7f57a62d
Sha1
9edf02f843eeaed5daba426c843bb41e803771de
Base64
65e8

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB5FC';
console.log(char);  // Output: 뗼

Java:

char c = '\uB5FC';
System.out.println(c);  // Output: 뗼

JSON:

{"text": "\uB5FC"}  // Value: 뗼

Python:

char = '\uB5FC'
print(char)  # Output: 뗼

Perl:

my $char = "\x{B5FC}";
print $char;  # Output: 뗼

PHP:

$char = "\x{B5FC}";
echo $char;  // Output: 뗼

Ruby:

char = "\u{B5FC}"
puts char  # Output: 뗼

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46588;</p>  <!-- Display: 뗼 -->

HTML Hexadecimal:

<p>HTML hex: &#xB5FC;</p>  <!-- Display: 뗼 -->

URL Encoding:

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

Encodings

MD5:

81ec698eff16d64edb9929ff7f57a62d

SHA1:

9edf02f843eeaed5daba426c843bb41e803771de

Base64:

65e8