Unicode Finder

"榁" U+6981(CJK UNIFIED IDEOGRAPH-6981)

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

Programming

C
\u6981
JavaScript
\u6981
Java
\u6981
Json
\u6981
Python
\u6981
Perl
\x{6981}
PHP
\x{6981}
Ruby
\u{6981}
Rust
\u{6981}
Go
\u6981

Web

CSS
\006981
HtmlDecimal
榁
HtmlHexadecimal
榁
Url
%E6%A6%81

Code

MD5
78538072a7a34200167095988ff84717
Sha1
ac44fe45aba6f17b1af14f38e8ccba33ec67b8e3
Base64
5qaB

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6981';
console.log(char);  // Output: 榁

Java:

char c = '\u6981';
System.out.println(c);  // Output: 榁

JSON:

{"text": "\u6981"}  // Value: 榁

Python:

char = '\u6981'
print(char)  # Output: 榁

Perl:

my $char = "\x{6981}";
print $char;  # Output: 榁

PHP:

$char = "\x{6981}";
echo $char;  // Output: 榁

Ruby:

char = "\u{6981}"
puts char  # Output: 榁

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006981";  /* Display: 榁 */
}

HTML Decimal:

<p>HTML decimal: &#27009;</p>  <!-- Display: 榁 -->

HTML Hexadecimal:

<p>HTML hex: &#x6981;</p>  <!-- Display: 榁 -->

URL Encoding:

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

Encodings

MD5:

78538072a7a34200167095988ff84717

SHA1:

ac44fe45aba6f17b1af14f38e8ccba33ec67b8e3

Base64:

5qaB