Unicode Finder

"뼯" U+BF2F(HANGUL SYLLABLE BBYELB)

U+BF2F
ブロック名
Hangul Syllables
名前
HANGUL SYLLABLE BBYELB

Programming

C
\uBF2F
JavaScript
\uBF2F
Java
\uBF2F
Json
\uBF2F
Python
\uBF2F
Perl
\x{BF2F}
PHP
\x{BF2F}
Ruby
\u{BF2F}
Rust
\u{BF2F}
Go
\uBF2F

Web

CSS
\00BF2F
HtmlDecimal
뼯
HtmlHexadecimal
뼯
Url
%EB%BC%AF

Code

MD5
53d3056efd8f743a8f8166d4842ea86d
Sha1
e4d04bc484d59d18fa11b066080f71218816aa9a
Base64
67yv

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uBF2F';
console.log(char);  // Output: 뼯

Java:

char c = '\uBF2F';
System.out.println(c);  // Output: 뼯

JSON:

{"text": "\uBF2F"}  // Value: 뼯

Python:

char = '\uBF2F'
print(char)  # Output: 뼯

Perl:

my $char = "\x{BF2F}";
print $char;  # Output: 뼯

PHP:

$char = "\x{BF2F}";
echo $char;  // Output: 뼯

Ruby:

char = "\u{BF2F}"
puts char  # Output: 뼯

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48943;</p>  <!-- Display: 뼯 -->

HTML Hexadecimal:

<p>HTML hex: &#xBF2F;</p>  <!-- Display: 뼯 -->

URL Encoding:

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

Encodings

MD5:

53d3056efd8f743a8f8166d4842ea86d

SHA1:

e4d04bc484d59d18fa11b066080f71218816aa9a

Base64:

67yv