Unicode Finder

"榀" U+6980(CJK UNIFIED IDEOGRAPH-6980)

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

Programming

C
\u6980
JavaScript
\u6980
Java
\u6980
Json
\u6980
Python
\u6980
Perl
\x{6980}
PHP
\x{6980}
Ruby
\u{6980}
Rust
\u{6980}
Go
\u6980

Web

CSS
\006980
HtmlDecimal
榀
HtmlHexadecimal
榀
Url
%E6%A6%80

Code

MD5
9ac7200f4c166f7337c4c55955a8001f
Sha1
83573943d8909a89bf7a2b72f86f523a1a157a7a
Base64
5qaA

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6980';
console.log(char);  // Output: 榀

Java:

char c = '\u6980';
System.out.println(c);  // Output: 榀

JSON:

{"text": "\u6980"}  // Value: 榀

Python:

char = '\u6980'
print(char)  # Output: 榀

Perl:

my $char = "\x{6980}";
print $char;  # Output: 榀

PHP:

$char = "\x{6980}";
echo $char;  // Output: 榀

Ruby:

char = "\u{6980}"
puts char  # Output: 榀

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006980";  /* Display: 榀 */
}

HTML Decimal:

<p>HTML decimal: &#27008;</p>  <!-- Display: 榀 -->

HTML Hexadecimal:

<p>HTML hex: &#x6980;</p>  <!-- Display: 榀 -->

URL Encoding:

// 榀 URL encoding
https://unicodefinder.com/search.php?query=%E6%A6%80

Encodings

MD5:

9ac7200f4c166f7337c4c55955a8001f

SHA1:

83573943d8909a89bf7a2b72f86f523a1a157a7a

Base64:

5qaA