Unicode Finder

"뽫" U+BF6B(HANGUL SYLLABLE BBWALH)

U+BF6B
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBWALH

Programming

C
\uBF6B
JavaScript
\uBF6B
Java
\uBF6B
Json
\uBF6B
Python
\uBF6B
Perl
\x{BF6B}
PHP
\x{BF6B}
Ruby
\u{BF6B}
Rust
\u{BF6B}
Go
\uBF6B

Web

CSS
\00BF6B
HtmlDecimal
뽫
HtmlHexadecimal
뽫
Url
%EB%BD%AB

Code

MD5
df319a279db41e5420d42135ea0e6c1f
Sha1
214a9894c92181e5fa8c6426b7d04b0c06b0f54d
Base64
672r

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBF6B';
console.log(char);  // Output: 뽫

Java:

char c = '\uBF6B';
System.out.println(c);  // Output: 뽫

JSON:

{"text": "\uBF6B"}  // Value: 뽫

Python:

char = '\uBF6B'
print(char)  # Output: 뽫

Perl:

my $char = "\x{BF6B}";
print $char;  # Output: 뽫

PHP:

$char = "\x{BF6B}";
echo $char;  // Output: 뽫

Ruby:

char = "\u{BF6B}"
puts char  # Output: 뽫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49003;</p>  <!-- Display: 뽫 -->

HTML Hexadecimal:

<p>HTML hex: &#xBF6B;</p>  <!-- Display: 뽫 -->

URL Encoding:

// 뽫 URL encoding
https://unicodefinder.com/search.php?query=%EB%BD%AB

Encodings

MD5:

df319a279db41e5420d42135ea0e6c1f

SHA1:

214a9894c92181e5fa8c6426b7d04b0c06b0f54d

Base64:

672r