Unicode Finder

"늕" U+B295(HANGUL SYLLABLE NEUNJ)

U+B295
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE NEUNJ

Programming

C
\uB295
JavaScript
\uB295
Java
\uB295
Json
\uB295
Python
\uB295
Perl
\x{B295}
PHP
\x{B295}
Ruby
\u{B295}
Rust
\u{B295}
Go
\uB295

Web

CSS
\00B295
HtmlDecimal
늕
HtmlHexadecimal
늕
Url
%EB%8A%95

Code

MD5
06a1800ad9522e41019b6887a74d3f2a
Sha1
d88b6540ca8bc8859111f141fee455a0e1883f47
Base64
64qV

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB295';
console.log(char);  // Output: 늕

Java:

char c = '\uB295';
System.out.println(c);  // Output: 늕

JSON:

{"text": "\uB295"}  // Value: 늕

Python:

char = '\uB295'
print(char)  # Output: 늕

Perl:

my $char = "\x{B295}";
print $char;  # Output: 늕

PHP:

$char = "\x{B295}";
echo $char;  // Output: 늕

Ruby:

char = "\u{B295}"
puts char  # Output: 늕

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45717;</p>  <!-- Display: 늕 -->

HTML Hexadecimal:

<p>HTML hex: &#xB295;</p>  <!-- Display: 늕 -->

URL Encoding:

// 늕 URL encoding
https://unicodefinder.com/search.php?query=%EB%8A%95

Encodings

MD5:

06a1800ad9522e41019b6887a74d3f2a

SHA1:

d88b6540ca8bc8859111f141fee455a0e1883f47

Base64:

64qV