Unicode Finder

"뼍" U+BF0D(HANGUL SYLLABLE BBYEONJ)

U+BF0D
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBYEONJ

Programming

C
\uBF0D
JavaScript
\uBF0D
Java
\uBF0D
Json
\uBF0D
Python
\uBF0D
Perl
\x{BF0D}
PHP
\x{BF0D}
Ruby
\u{BF0D}
Rust
\u{BF0D}
Go
\uBF0D

Web

CSS
\00BF0D
HtmlDecimal
뼍
HtmlHexadecimal
뼍
Url
%EB%BC%8D

Code

MD5
740ea0cb9838cf98c9d4cdcb4f834ac0
Sha1
9739e0a9d3e13a1d47333b1fbd3b742445f10f34
Base64
67yN

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBF0D';
console.log(char);  // Output: 뼍

Java:

char c = '\uBF0D';
System.out.println(c);  // Output: 뼍

JSON:

{"text": "\uBF0D"}  // Value: 뼍

Python:

char = '\uBF0D'
print(char)  # Output: 뼍

Perl:

my $char = "\x{BF0D}";
print $char;  # Output: 뼍

PHP:

$char = "\x{BF0D}";
echo $char;  // Output: 뼍

Ruby:

char = "\u{BF0D}"
puts char  # Output: 뼍

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48909;</p>  <!-- Display: 뼍 -->

HTML Hexadecimal:

<p>HTML hex: &#xBF0D;</p>  <!-- Display: 뼍 -->

URL Encoding:

// 뼍 URL encoding
https://unicodefinder.com/search.php?query=%EB%BC%8D

Encodings

MD5:

740ea0cb9838cf98c9d4cdcb4f834ac0

SHA1:

9739e0a9d3e13a1d47333b1fbd3b742445f10f34

Base64:

67yN