Unicode Finder

"뉥" U+B265(HANGUL SYLLABLE NWILT)

U+B265
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE NWILT

Programming

C
\uB265
JavaScript
\uB265
Java
\uB265
Json
\uB265
Python
\uB265
Perl
\x{B265}
PHP
\x{B265}
Ruby
\u{B265}
Rust
\u{B265}
Go
\uB265

Web

CSS
\00B265
HtmlDecimal
뉥
HtmlHexadecimal
뉥
Url
%EB%89%A5

Code

MD5
ec9572bde7a97fab1c063dd579b2ceda
Sha1
0faead539d41ae0edb35628029e561b559570aa2
Base64
64ml

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB265';
console.log(char);  // Output: 뉥

Java:

char c = '\uB265';
System.out.println(c);  // Output: 뉥

JSON:

{"text": "\uB265"}  // Value: 뉥

Python:

char = '\uB265'
print(char)  # Output: 뉥

Perl:

my $char = "\x{B265}";
print $char;  # Output: 뉥

PHP:

$char = "\x{B265}";
echo $char;  // Output: 뉥

Ruby:

char = "\u{B265}"
puts char  # Output: 뉥

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45669;</p>  <!-- Display: 뉥 -->

HTML Hexadecimal:

<p>HTML hex: &#xB265;</p>  <!-- Display: 뉥 -->

URL Encoding:

// 뉥 URL encoding
https://unicodefinder.com/search.php?query=%EB%89%A5

Encodings

MD5:

ec9572bde7a97fab1c063dd579b2ceda

SHA1:

0faead539d41ae0edb35628029e561b559570aa2

Base64:

64ml