Unicode Finder

"뼦" U+BF26(HANGUL SYLLABLE BBYEGG)

U+BF26
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBYEGG

Programming

C
\uBF26
JavaScript
\uBF26
Java
\uBF26
Json
\uBF26
Python
\uBF26
Perl
\x{BF26}
PHP
\x{BF26}
Ruby
\u{BF26}
Rust
\u{BF26}
Go
\uBF26

Web

CSS
\00BF26
HtmlDecimal
뼦
HtmlHexadecimal
뼦
Url
%EB%BC%A6

Code

MD5
b5a0f4cfd2b746d423fb7a4af1c39d30
Sha1
81253cde573878676cc62ba4008fd11a52282468
Base64
67ym

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBF26';
console.log(char);  // Output: 뼦

Java:

char c = '\uBF26';
System.out.println(c);  // Output: 뼦

JSON:

{"text": "\uBF26"}  // Value: 뼦

Python:

char = '\uBF26'
print(char)  # Output: 뼦

Perl:

my $char = "\x{BF26}";
print $char;  # Output: 뼦

PHP:

$char = "\x{BF26}";
echo $char;  // Output: 뼦

Ruby:

char = "\u{BF26}"
puts char  # Output: 뼦

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48934;</p>  <!-- Display: 뼦 -->

HTML Hexadecimal:

<p>HTML hex: &#xBF26;</p>  <!-- Display: 뼦 -->

URL Encoding:

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

Encodings

MD5:

b5a0f4cfd2b746d423fb7a4af1c39d30

SHA1:

81253cde573878676cc62ba4008fd11a52282468

Base64:

67ym