Unicode Finder

"뼆" U+BF06(HANGUL SYLLABLE BBEP)

U+BF06
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBEP

Programming

C
\uBF06
JavaScript
\uBF06
Java
\uBF06
Json
\uBF06
Python
\uBF06
Perl
\x{BF06}
PHP
\x{BF06}
Ruby
\u{BF06}
Rust
\u{BF06}
Go
\uBF06

Web

CSS
\00BF06
HtmlDecimal
뼆
HtmlHexadecimal
뼆
Url
%EB%BC%86

Code

MD5
8b6376c8a7c4a10d03f1a58887990f64
Sha1
3e319a49b87787fe44de6b856852fcfd8b6e729b
Base64
67yG

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBF06';
console.log(char);  // Output: 뼆

Java:

char c = '\uBF06';
System.out.println(c);  // Output: 뼆

JSON:

{"text": "\uBF06"}  // Value: 뼆

Python:

char = '\uBF06'
print(char)  # Output: 뼆

Perl:

my $char = "\x{BF06}";
print $char;  # Output: 뼆

PHP:

$char = "\x{BF06}";
echo $char;  // Output: 뼆

Ruby:

char = "\u{BF06}"
puts char  # Output: 뼆

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48902;</p>  <!-- Display: 뼆 -->

HTML Hexadecimal:

<p>HTML hex: &#xBF06;</p>  <!-- Display: 뼆 -->

URL Encoding:

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

Encodings

MD5:

8b6376c8a7c4a10d03f1a58887990f64

SHA1:

3e319a49b87787fe44de6b856852fcfd8b6e729b

Base64:

67yG