Unicode Finder

"볘" U+BCD8(HANGUL SYLLABLE BYE)

U+BCD8
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BYE

Programming

C
\uBCD8
JavaScript
\uBCD8
Java
\uBCD8
Json
\uBCD8
Python
\uBCD8
Perl
\x{BCD8}
PHP
\x{BCD8}
Ruby
\u{BCD8}
Rust
\u{BCD8}
Go
\uBCD8

Web

CSS
\00BCD8
HtmlDecimal
볘
HtmlHexadecimal
볘
Url
%EB%B3%98

Code

MD5
20ae6333b0ee8a7853cd31a12ec59d10
Sha1
4c8346552c29a161d8a373ca40fcd963eb092049
Base64
67OY

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBCD8';
console.log(char);  // Output: 볘

Java:

char c = '\uBCD8';
System.out.println(c);  // Output: 볘

JSON:

{"text": "\uBCD8"}  // Value: 볘

Python:

char = '\uBCD8'
print(char)  # Output: 볘

Perl:

my $char = "\x{BCD8}";
print $char;  # Output: 볘

PHP:

$char = "\x{BCD8}";
echo $char;  // Output: 볘

Ruby:

char = "\u{BCD8}"
puts char  # Output: 볘

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48344;</p>  <!-- Display: 볘 -->

HTML Hexadecimal:

<p>HTML hex: &#xBCD8;</p>  <!-- Display: 볘 -->

URL Encoding:

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

Encodings

MD5:

20ae6333b0ee8a7853cd31a12ec59d10

SHA1:

4c8346552c29a161d8a373ca40fcd963eb092049

Base64:

67OY