Unicode Finder

"떶" U+B5B6(HANGUL SYLLABLE DDEOJ)

U+B5B6
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DDEOJ

Programming

C
\uB5B6
JavaScript
\uB5B6
Java
\uB5B6
Json
\uB5B6
Python
\uB5B6
Perl
\x{B5B6}
PHP
\x{B5B6}
Ruby
\u{B5B6}
Rust
\u{B5B6}
Go
\uB5B6

Web

CSS
\00B5B6
HtmlDecimal
떶
HtmlHexadecimal
떶
Url
%EB%96%B6

Code

MD5
7cd129dd46a2c78586abdbaf4443de7f
Sha1
512f3f74d22f1f5fe0d3533e403ea79d3e6bffe0
Base64
65a2

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB5B6';
console.log(char);  // Output: 떶

Java:

char c = '\uB5B6';
System.out.println(c);  // Output: 떶

JSON:

{"text": "\uB5B6"}  // Value: 떶

Python:

char = '\uB5B6'
print(char)  # Output: 떶

Perl:

my $char = "\x{B5B6}";
print $char;  # Output: 떶

PHP:

$char = "\x{B5B6}";
echo $char;  // Output: 떶

Ruby:

char = "\u{B5B6}"
puts char  # Output: 떶

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46518;</p>  <!-- Display: 떶 -->

HTML Hexadecimal:

<p>HTML hex: &#xB5B6;</p>  <!-- Display: 떶 -->

URL Encoding:

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

Encodings

MD5:

7cd129dd46a2c78586abdbaf4443de7f

SHA1:

512f3f74d22f1f5fe0d3533e403ea79d3e6bffe0

Base64:

65a2