Unicode Finder

"嬎" U+5B0E(CJK UNIFIED IDEOGRAPH-5B0E)

U+5B0E
Blokk Neve
CJK Unified Ideographs
Név
CJK UNIFIED IDEOGRAPH-5B0E

Programming

C
\u5B0E
JavaScript
\u5B0E
Java
\u5B0E
Json
\u5B0E
Python
\u5B0E
Perl
\x{5B0E}
PHP
\x{5B0E}
Ruby
\u{5B0E}
Rust
\u{5B0E}
Go
\u5B0E

Web

CSS
\005B0E
HtmlDecimal
嬎
HtmlHexadecimal
嬎
Url
%E5%AC%8E

Code

MD5
487c338d6b75424adccdc83f553b7c36
Sha1
3497b250b0c8098c176f540623ce968ec94196ea
Base64
5ayO

Használati Példák

Programming Languages

C:

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

JavaScript:

const char = '\u5B0E';
console.log(char);  // Output: 嬎

Java:

char c = '\u5B0E';
System.out.println(c);  // Output: 嬎

JSON:

{"text": "\u5B0E"}  // Value: 嬎

Python:

char = '\u5B0E'
print(char)  # Output: 嬎

Perl:

my $char = "\x{5B0E}";
print $char;  # Output: 嬎

PHP:

$char = "\x{5B0E}";
echo $char;  // Output: 嬎

Ruby:

char = "\u{5B0E}"
puts char  # Output: 嬎

Rust:

let c = '\u{5B0E}';
println!("{}", c);  // Output: 嬎

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005B0E";  /* Display: 嬎 */
}

HTML Decimal:

<p>HTML decimal: &#23310;</p>  <!-- Display: 嬎 -->

HTML Hexadecimal:

<p>HTML hex: &#x5B0E;</p>  <!-- Display: 嬎 -->

URL Encoding:

// 嬎 URL encoding
https://unicodefinder.com/search.php?query=%E5%AC%8E

Encodings

MD5:

487c338d6b75424adccdc83f553b7c36

SHA1:

3497b250b0c8098c176f540623ce968ec94196ea

Base64:

5ayO