Unicode Finder

"楱" U+6971(CJK UNIFIED IDEOGRAPH-6971)

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

Programming

C
\u6971
JavaScript
\u6971
Java
\u6971
Json
\u6971
Python
\u6971
Perl
\x{6971}
PHP
\x{6971}
Ruby
\u{6971}
Rust
\u{6971}
Go
\u6971

Web

CSS
\006971
HtmlDecimal
楱
HtmlHexadecimal
楱
Url
%E6%A5%B1

Code

MD5
b47624d027c0753584df2cc7b87f2684
Sha1
d7f5dc89a236b04b34fdac3a986d3aaf6997fbea
Base64
5qWx

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6971';
console.log(char);  // Output: 楱

Java:

char c = '\u6971';
System.out.println(c);  // Output: 楱

JSON:

{"text": "\u6971"}  // Value: 楱

Python:

char = '\u6971'
print(char)  # Output: 楱

Perl:

my $char = "\x{6971}";
print $char;  # Output: 楱

PHP:

$char = "\x{6971}";
echo $char;  // Output: 楱

Ruby:

char = "\u{6971}"
puts char  # Output: 楱

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006971";  /* Display: 楱 */
}

HTML Decimal:

<p>HTML decimal: &#26993;</p>  <!-- Display: 楱 -->

HTML Hexadecimal:

<p>HTML hex: &#x6971;</p>  <!-- Display: 楱 -->

URL Encoding:

// 楱 URL encoding
https://unicodefinder.com/search.php?query=%E6%A5%B1

Encodings

MD5:

b47624d027c0753584df2cc7b87f2684

SHA1:

d7f5dc89a236b04b34fdac3a986d3aaf6997fbea

Base64:

5qWx