Unicode Finder

"憭" U+61AD(CJK UNIFIED IDEOGRAPH-61AD)

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

Programming

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

Web

CSS
\0061AD
HtmlDecimal
憭
HtmlHexadecimal
憭
Url
%E6%86%AD

Code

MD5
4a8b38a15159a4e97ec3ad0afe7335d2
Sha1
dd83bf347bcd5f30d859a758fc94e84054966dd6
Base64
5oat

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u61AD';
console.log(char);  // Output: 憭

Java:

char c = '\u61AD';
System.out.println(c);  // Output: 憭

JSON:

{"text": "\u61AD"}  // Value: 憭

Python:

char = '\u61AD'
print(char)  # Output: 憭

Perl:

my $char = "\x{61AD}";
print $char;  # Output: 憭

PHP:

$char = "\x{61AD}";
echo $char;  // Output: 憭

Ruby:

char = "\u{61AD}"
puts char  # Output: 憭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#25005;</p>  <!-- Display: 憭 -->

HTML Hexadecimal:

<p>HTML hex: &#x61AD;</p>  <!-- Display: 憭 -->

URL Encoding:

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

Encodings

MD5:

4a8b38a15159a4e97ec3ad0afe7335d2

SHA1:

dd83bf347bcd5f30d859a758fc94e84054966dd6

Base64:

5oat