Unicode Finder

"馾" U+99BE(CJK UNIFIED IDEOGRAPH-99BE)

U+99BE
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-99BE

Programming

C
\u99BE
JavaScript
\u99BE
Java
\u99BE
Json
\u99BE
Python
\u99BE
Perl
\x{99BE}
PHP
\x{99BE}
Ruby
\u{99BE}
Rust
\u{99BE}
Go
\u99BE

Web

CSS
\0099BE
HtmlDecimal
馾
HtmlHexadecimal
馾
Url
%E9%A6%BE

Code

MD5
cce00762c09664ec0d5352ef1b50563e
Sha1
28c60a0b82d60247ec56177869ca2bf6d648cdf4
Base64
6aa+

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u99BE';
console.log(char);  // Output: 馾

Java:

char c = '\u99BE';
System.out.println(c);  // Output: 馾

JSON:

{"text": "\u99BE"}  // Value: 馾

Python:

char = '\u99BE'
print(char)  # Output: 馾

Perl:

my $char = "\x{99BE}";
print $char;  # Output: 馾

PHP:

$char = "\x{99BE}";
echo $char;  // Output: 馾

Ruby:

char = "\u{99BE}"
puts char  # Output: 馾

Rust:

let c = '\u{99BE}';
println!("{}", c);  // Output: 馾

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0099BE";  /* Display: 馾 */
}

HTML Decimal:

<p>HTML decimal: &#39358;</p>  <!-- Display: 馾 -->

HTML Hexadecimal:

<p>HTML hex: &#x99BE;</p>  <!-- Display: 馾 -->

URL Encoding:

// 馾 URL encoding
https://unicodefinder.com/search.php?query=%E9%A6%BE

Encodings

MD5:

cce00762c09664ec0d5352ef1b50563e

SHA1:

28c60a0b82d60247ec56177869ca2bf6d648cdf4

Base64:

6aa+