Unicode Finder

"띏" U+B74F(HANGUL SYLLABLE DDYILB)

U+B74F
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DDYILB

Programming

C
\uB74F
JavaScript
\uB74F
Java
\uB74F
Json
\uB74F
Python
\uB74F
Perl
\x{B74F}
PHP
\x{B74F}
Ruby
\u{B74F}
Rust
\u{B74F}
Go
\uB74F

Web

CSS
\00B74F
HtmlDecimal
띏
HtmlHexadecimal
띏
Url
%EB%9D%8F

Code

MD5
d3dceb0be4c3d20e23af77afcd815d0e
Sha1
ca0d3b71a172661490f8988eae3c48128cb3a7ab
Base64
652P

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB74F';
console.log(char);  // Output: 띏

Java:

char c = '\uB74F';
System.out.println(c);  // Output: 띏

JSON:

{"text": "\uB74F"}  // Value: 띏

Python:

char = '\uB74F'
print(char)  # Output: 띏

Perl:

my $char = "\x{B74F}";
print $char;  # Output: 띏

PHP:

$char = "\x{B74F}";
echo $char;  // Output: 띏

Ruby:

char = "\u{B74F}"
puts char  # Output: 띏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46927;</p>  <!-- Display: 띏 -->

HTML Hexadecimal:

<p>HTML hex: &#xB74F;</p>  <!-- Display: 띏 -->

URL Encoding:

// 띏 URL encoding
https://unicodefinder.com/search.php?query=%EB%9D%8F

Encodings

MD5:

d3dceb0be4c3d20e23af77afcd815d0e

SHA1:

ca0d3b71a172661490f8988eae3c48128cb3a7ab

Base64:

652P