Unicode Finder

"뽁" U+BF41(HANGUL SYLLABLE BBOG)

U+BF41
ブロック名
Hangul Syllables
名前
HANGUL SYLLABLE BBOG

Programming

C
\uBF41
JavaScript
\uBF41
Java
\uBF41
Json
\uBF41
Python
\uBF41
Perl
\x{BF41}
PHP
\x{BF41}
Ruby
\u{BF41}
Rust
\u{BF41}
Go
\uBF41

Web

CSS
\00BF41
HtmlDecimal
뽁
HtmlHexadecimal
뽁
Url
%EB%BD%81

Code

MD5
036a8d6a460114446069196d1e69f68f
Sha1
d330253414f48fb70f585ff378f7dbb78786917b
Base64
672B

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uBF41';
console.log(char);  // Output: 뽁

Java:

char c = '\uBF41';
System.out.println(c);  // Output: 뽁

JSON:

{"text": "\uBF41"}  // Value: 뽁

Python:

char = '\uBF41'
print(char)  # Output: 뽁

Perl:

my $char = "\x{BF41}";
print $char;  # Output: 뽁

PHP:

$char = "\x{BF41}";
echo $char;  // Output: 뽁

Ruby:

char = "\u{BF41}"
puts char  # Output: 뽁

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48961;</p>  <!-- Display: 뽁 -->

HTML Hexadecimal:

<p>HTML hex: &#xBF41;</p>  <!-- Display: 뽁 -->

URL Encoding:

// 뽁 URL encoding
https://unicodefinder.com/search.php?query=%EB%BD%81

Encodings

MD5:

036a8d6a460114446069196d1e69f68f

SHA1:

d330253414f48fb70f585ff378f7dbb78786917b

Base64:

672B