Unicode Finder

"븽" U+BE3D(HANGUL SYLLABLE BYING)

U+BE3D
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BYING

Programming

C
\uBE3D
JavaScript
\uBE3D
Java
\uBE3D
Json
\uBE3D
Python
\uBE3D
Perl
\x{BE3D}
PHP
\x{BE3D}
Ruby
\u{BE3D}
Rust
\u{BE3D}
Go
\uBE3D

Web

CSS
\00BE3D
HtmlDecimal
븽
HtmlHexadecimal
븽
Url
%EB%B8%BD

Code

MD5
3cfd5e13d40974b382a99a75ccc98db3
Sha1
5ac0749e80eee0803fa25d5d9b6bc76caa5305f3
Base64
67i9

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBE3D';
console.log(char);  // Output: 븽

Java:

char c = '\uBE3D';
System.out.println(c);  // Output: 븽

JSON:

{"text": "\uBE3D"}  // Value: 븽

Python:

char = '\uBE3D'
print(char)  # Output: 븽

Perl:

my $char = "\x{BE3D}";
print $char;  # Output: 븽

PHP:

$char = "\x{BE3D}";
echo $char;  // Output: 븽

Ruby:

char = "\u{BE3D}"
puts char  # Output: 븽

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48701;</p>  <!-- Display: 븽 -->

HTML Hexadecimal:

<p>HTML hex: &#xBE3D;</p>  <!-- Display: 븽 -->

URL Encoding:

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

Encodings

MD5:

3cfd5e13d40974b382a99a75ccc98db3

SHA1:

5ac0749e80eee0803fa25d5d9b6bc76caa5305f3

Base64:

67i9