Unicode Finder

"떬" U+B5AC(HANGUL SYLLABLE DDEOLS)

U+B5AC
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DDEOLS

Programming

C
\uB5AC
JavaScript
\uB5AC
Java
\uB5AC
Json
\uB5AC
Python
\uB5AC
Perl
\x{B5AC}
PHP
\x{B5AC}
Ruby
\u{B5AC}
Rust
\u{B5AC}
Go
\uB5AC

Web

CSS
\00B5AC
HtmlDecimal
떬
HtmlHexadecimal
떬
Url
%EB%96%AC

Code

MD5
a0d142db5680f7b2fd850198ceebce03
Sha1
ebc2a936cd654e533955dd57ffbc0a9a4a673b9a
Base64
65as

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB5AC';
console.log(char);  // Output: 떬

Java:

char c = '\uB5AC';
System.out.println(c);  // Output: 떬

JSON:

{"text": "\uB5AC"}  // Value: 떬

Python:

char = '\uB5AC'
print(char)  # Output: 떬

Perl:

my $char = "\x{B5AC}";
print $char;  # Output: 떬

PHP:

$char = "\x{B5AC}";
echo $char;  // Output: 떬

Ruby:

char = "\u{B5AC}"
puts char  # Output: 떬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46508;</p>  <!-- Display: 떬 -->

HTML Hexadecimal:

<p>HTML hex: &#xB5AC;</p>  <!-- Display: 떬 -->

URL Encoding:

// 떬 URL encoding
https://unicodefinder.com/search.php?query=%EB%96%AC

Encodings

MD5:

a0d142db5680f7b2fd850198ceebce03

SHA1:

ebc2a936cd654e533955dd57ffbc0a9a4a673b9a

Base64:

65as