Unicode Finder

"攲" U+6532(CJK UNIFIED IDEOGRAPH-6532)

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

Programming

C
\u6532
JavaScript
\u6532
Java
\u6532
Json
\u6532
Python
\u6532
Perl
\x{6532}
PHP
\x{6532}
Ruby
\u{6532}
Rust
\u{6532}
Go
\u6532

Web

CSS
\006532
HtmlDecimal
攲
HtmlHexadecimal
攲
Url
%E6%94%B2

Code

MD5
61f74ac00f321d26c231ed7132391578
Sha1
51bff8f950582f686d13b2512f9ac75af5ceb59e
Base64
5pSy

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6532';
console.log(char);  // Output: 攲

Java:

char c = '\u6532';
System.out.println(c);  // Output: 攲

JSON:

{"text": "\u6532"}  // Value: 攲

Python:

char = '\u6532'
print(char)  # Output: 攲

Perl:

my $char = "\x{6532}";
print $char;  # Output: 攲

PHP:

$char = "\x{6532}";
echo $char;  // Output: 攲

Ruby:

char = "\u{6532}"
puts char  # Output: 攲

Rust:

let c = '\u{6532}';
println!("{}", c);  // Output: 攲

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006532";  /* Display: 攲 */
}

HTML Decimal:

<p>HTML decimal: &#25906;</p>  <!-- Display: 攲 -->

HTML Hexadecimal:

<p>HTML hex: &#x6532;</p>  <!-- Display: 攲 -->

URL Encoding:

// 攲 URL encoding
https://unicodefinder.com/search.php?query=%E6%94%B2

Encodings

MD5:

61f74ac00f321d26c231ed7132391578

SHA1:

51bff8f950582f686d13b2512f9ac75af5ceb59e

Base64:

5pSy