Unicode Finder

"憬" U+61AC(CJK UNIFIED IDEOGRAPH-61AC)

U+61AC
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-61AC

Programming

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

Web

CSS
\0061AC
HtmlDecimal
憬
HtmlHexadecimal
憬
Url
%E6%86%AC

Code

MD5
23b89659f13abc285d53bc9ba951a0d9
Sha1
3957900a638f02f680fc52a7eea25b7ba09e43b6
Base64
5oas

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u61AC';
console.log(char);  // Output: 憬

Java:

char c = '\u61AC';
System.out.println(c);  // Output: 憬

JSON:

{"text": "\u61AC"}  // Value: 憬

Python:

char = '\u61AC'
print(char)  # Output: 憬

Perl:

my $char = "\x{61AC}";
print $char;  # Output: 憬

PHP:

$char = "\x{61AC}";
echo $char;  // Output: 憬

Ruby:

char = "\u{61AC}"
puts char  # Output: 憬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#25004;</p>  <!-- Display: 憬 -->

HTML Hexadecimal:

<p>HTML hex: &#x61AC;</p>  <!-- Display: 憬 -->

URL Encoding:

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

Encodings

MD5:

23b89659f13abc285d53bc9ba951a0d9

SHA1:

3957900a638f02f680fc52a7eea25b7ba09e43b6

Base64:

5oas