Unicode Finder

"憠" U+61A0(CJK UNIFIED IDEOGRAPH-61A0)

U+61A0
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-61A0

Programming

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

Web

CSS
\0061A0
HtmlDecimal
憠
HtmlHexadecimal
憠
Url
%E6%86%A0

Code

MD5
71243c6f26c659b8c8d4db7753596789
Sha1
61af4fb0ddbdcad3ed5752cab4c7535ea368800e
Base64
5oag

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u61A0';
console.log(char);  // Output: 憠

Java:

char c = '\u61A0';
System.out.println(c);  // Output: 憠

JSON:

{"text": "\u61A0"}  // Value: 憠

Python:

char = '\u61A0'
print(char)  # Output: 憠

Perl:

my $char = "\x{61A0}";
print $char;  # Output: 憠

PHP:

$char = "\x{61A0}";
echo $char;  // Output: 憠

Ruby:

char = "\u{61A0}"
puts char  # Output: 憠

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24992;</p>  <!-- Display: 憠 -->

HTML Hexadecimal:

<p>HTML hex: &#x61A0;</p>  <!-- Display: 憠 -->

URL Encoding:

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

Encodings

MD5:

71243c6f26c659b8c8d4db7753596789

SHA1:

61af4fb0ddbdcad3ed5752cab4c7535ea368800e

Base64:

5oag