Unicode Finder

"嬏" U+5B0F(CJK UNIFIED IDEOGRAPH-5B0F)

U+5B0F
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-5B0F

Programming

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

Web

CSS
\005B0F
HtmlDecimal
嬏
HtmlHexadecimal
嬏
Url
%E5%AC%8F

Code

MD5
8a6c76b1e047f95575b5e8ff9c5b5e05
Sha1
c4118425e992e7670b668498dada47558bff421b
Base64
5ayP

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5B0F';
console.log(char);  // Output: 嬏

Java:

char c = '\u5B0F';
System.out.println(c);  // Output: 嬏

JSON:

{"text": "\u5B0F"}  // Value: 嬏

Python:

char = '\u5B0F'
print(char)  # Output: 嬏

Perl:

my $char = "\x{5B0F}";
print $char;  # Output: 嬏

PHP:

$char = "\x{5B0F}";
echo $char;  // Output: 嬏

Ruby:

char = "\u{5B0F}"
puts char  # Output: 嬏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23311;</p>  <!-- Display: 嬏 -->

HTML Hexadecimal:

<p>HTML hex: &#x5B0F;</p>  <!-- Display: 嬏 -->

URL Encoding:

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

Encodings

MD5:

8a6c76b1e047f95575b5e8ff9c5b5e05

SHA1:

c4118425e992e7670b668498dada47558bff421b

Base64:

5ayP