Unicode Finder

"빨" U+BE68(HANGUL SYLLABLE BBAL)

U+BE68
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBAL

Programming

C
\uBE68
JavaScript
\uBE68
Java
\uBE68
Json
\uBE68
Python
\uBE68
Perl
\x{BE68}
PHP
\x{BE68}
Ruby
\u{BE68}
Rust
\u{BE68}
Go
\uBE68

Web

CSS
\00BE68
HtmlDecimal
빨
HtmlHexadecimal
빨
Url
%EB%B9%A8

Code

MD5
ab08c46ea10f14f33b14353cdef1d89c
Sha1
f74678d2b1d267da4857eec516bef7d3063cfc0d
Base64
67mo

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBE68';
console.log(char);  // Output: 빨

Java:

char c = '\uBE68';
System.out.println(c);  // Output: 빨

JSON:

{"text": "\uBE68"}  // Value: 빨

Python:

char = '\uBE68'
print(char)  # Output: 빨

Perl:

my $char = "\x{BE68}";
print $char;  # Output: 빨

PHP:

$char = "\x{BE68}";
echo $char;  // Output: 빨

Ruby:

char = "\u{BE68}"
puts char  # Output: 빨

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48744;</p>  <!-- Display: 빨 -->

HTML Hexadecimal:

<p>HTML hex: &#xBE68;</p>  <!-- Display: 빨 -->

URL Encoding:

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

Encodings

MD5:

ab08c46ea10f14f33b14353cdef1d89c

SHA1:

f74678d2b1d267da4857eec516bef7d3063cfc0d

Base64:

67mo