Unicode Finder

"뗹" U+B5F9(HANGUL SYLLABLE DDYENJ)

U+B5F9
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DDYENJ

Programming

C
\uB5F9
JavaScript
\uB5F9
Java
\uB5F9
Json
\uB5F9
Python
\uB5F9
Perl
\x{B5F9}
PHP
\x{B5F9}
Ruby
\u{B5F9}
Rust
\u{B5F9}
Go
\uB5F9

Web

CSS
\00B5F9
HtmlDecimal
뗹
HtmlHexadecimal
뗹
Url
%EB%97%B9

Code

MD5
b8a04634f6c618235bfa9112c6af1c53
Sha1
c8b0bc2c91bed19f53cc4142f804140ed188ff55
Base64
65e5

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB5F9';
console.log(char);  // Output: 뗹

Java:

char c = '\uB5F9';
System.out.println(c);  // Output: 뗹

JSON:

{"text": "\uB5F9"}  // Value: 뗹

Python:

char = '\uB5F9'
print(char)  # Output: 뗹

Perl:

my $char = "\x{B5F9}";
print $char;  # Output: 뗹

PHP:

$char = "\x{B5F9}";
echo $char;  // Output: 뗹

Ruby:

char = "\u{B5F9}"
puts char  # Output: 뗹

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46585;</p>  <!-- Display: 뗹 -->

HTML Hexadecimal:

<p>HTML hex: &#xB5F9;</p>  <!-- Display: 뗹 -->

URL Encoding:

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

Encodings

MD5:

b8a04634f6c618235bfa9112c6af1c53

SHA1:

c8b0bc2c91bed19f53cc4142f804140ed188ff55

Base64:

65e5