Unicode Finder

"憿" U+61BF(CJK UNIFIED IDEOGRAPH-61BF)

U+61BF
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-61BF

Programming

C
\u61BF
JavaScript
\u61BF
Java
\u61BF
Json
\u61BF
Python
\u61BF
Perl
\x{61BF}
PHP
\x{61BF}
Ruby
\u{61BF}
Rust
\u{61BF}
Go
\u61BF

Web

CSS
\0061BF
HtmlDecimal
憿
HtmlHexadecimal
憿
Url
%E6%86%BF

Code

MD5
70e0bfe7a14fc5a71bd51da06d099569
Sha1
6da1cb959db9c8ce535cbf763e1078b5e0e34c69
Base64
5oa/

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u61BF';
console.log(char);  // Output: 憿

Java:

char c = '\u61BF';
System.out.println(c);  // Output: 憿

JSON:

{"text": "\u61BF"}  // Value: 憿

Python:

char = '\u61BF'
print(char)  # Output: 憿

Perl:

my $char = "\x{61BF}";
print $char;  # Output: 憿

PHP:

$char = "\x{61BF}";
echo $char;  // Output: 憿

Ruby:

char = "\u{61BF}"
puts char  # Output: 憿

Rust:

let c = '\u{61BF}';
println!("{}", c);  // Output: 憿

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0061BF";  /* Display: 憿 */
}

HTML Decimal:

<p>HTML decimal: &#25023;</p>  <!-- Display: 憿 -->

HTML Hexadecimal:

<p>HTML hex: &#x61BF;</p>  <!-- Display: 憿 -->

URL Encoding:

// 憿 URL encoding
https://unicodefinder.com/search.php?query=%E6%86%BF

Encodings

MD5:

70e0bfe7a14fc5a71bd51da06d099569

SHA1:

6da1cb959db9c8ce535cbf763e1078b5e0e34c69

Base64:

5oa/