Unicode Finder

"볱" U+BCF1(HANGUL SYLLABLE BYET)

U+BCF1
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BYET

Programming

C
\uBCF1
JavaScript
\uBCF1
Java
\uBCF1
Json
\uBCF1
Python
\uBCF1
Perl
\x{BCF1}
PHP
\x{BCF1}
Ruby
\u{BCF1}
Rust
\u{BCF1}
Go
\uBCF1

Web

CSS
\00BCF1
HtmlDecimal
볱
HtmlHexadecimal
볱
Url
%EB%B3%B1

Code

MD5
9a300fdab57e147f593ccbe89093124f
Sha1
48185d8534985ea7c79352edddf720a311793248
Base64
67Ox

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBCF1';
console.log(char);  // Output: 볱

Java:

char c = '\uBCF1';
System.out.println(c);  // Output: 볱

JSON:

{"text": "\uBCF1"}  // Value: 볱

Python:

char = '\uBCF1'
print(char)  # Output: 볱

Perl:

my $char = "\x{BCF1}";
print $char;  # Output: 볱

PHP:

$char = "\x{BCF1}";
echo $char;  // Output: 볱

Ruby:

char = "\u{BCF1}"
puts char  # Output: 볱

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48369;</p>  <!-- Display: 볱 -->

HTML Hexadecimal:

<p>HTML hex: &#xBCF1;</p>  <!-- Display: 볱 -->

URL Encoding:

// 볱 URL encoding
https://unicodefinder.com/search.php?query=%EB%B3%B1

Encodings

MD5:

9a300fdab57e147f593ccbe89093124f

SHA1:

48185d8534985ea7c79352edddf720a311793248

Base64:

67Ox