Unicode Finder

"뼫" U+BF2B(HANGUL SYLLABLE BBYED)

U+BF2B
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBYED

Programming

C
\uBF2B
JavaScript
\uBF2B
Java
\uBF2B
Json
\uBF2B
Python
\uBF2B
Perl
\x{BF2B}
PHP
\x{BF2B}
Ruby
\u{BF2B}
Rust
\u{BF2B}
Go
\uBF2B

Web

CSS
\00BF2B
HtmlDecimal
뼫
HtmlHexadecimal
뼫
Url
%EB%BC%AB

Code

MD5
5b8d059775d0fc0e7aa2f6d0fc5f06b4
Sha1
44be4e1f9435b10eab16104d155e73116a2375b0
Base64
67yr

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBF2B';
console.log(char);  // Output: 뼫

Java:

char c = '\uBF2B';
System.out.println(c);  // Output: 뼫

JSON:

{"text": "\uBF2B"}  // Value: 뼫

Python:

char = '\uBF2B'
print(char)  # Output: 뼫

Perl:

my $char = "\x{BF2B}";
print $char;  # Output: 뼫

PHP:

$char = "\x{BF2B}";
echo $char;  // Output: 뼫

Ruby:

char = "\u{BF2B}"
puts char  # Output: 뼫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48939;</p>  <!-- Display: 뼫 -->

HTML Hexadecimal:

<p>HTML hex: &#xBF2B;</p>  <!-- Display: 뼫 -->

URL Encoding:

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

Encodings

MD5:

5b8d059775d0fc0e7aa2f6d0fc5f06b4

SHA1:

44be4e1f9435b10eab16104d155e73116a2375b0

Base64:

67yr