Unicode Finder

"榈" U+6988(CJK UNIFIED IDEOGRAPH-6988)

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

Programming

C
\u6988
JavaScript
\u6988
Java
\u6988
Json
\u6988
Python
\u6988
Perl
\x{6988}
PHP
\x{6988}
Ruby
\u{6988}
Rust
\u{6988}
Go
\u6988

Web

CSS
\006988
HtmlDecimal
榈
HtmlHexadecimal
榈
Url
%E6%A6%88

Code

MD5
ddf979f02ac7cac9c7105b56077fbd3a
Sha1
3f07ccbca0f48912fc20cf2cdca1c83718914983
Base64
5qaI

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6988';
console.log(char);  // Output: 榈

Java:

char c = '\u6988';
System.out.println(c);  // Output: 榈

JSON:

{"text": "\u6988"}  // Value: 榈

Python:

char = '\u6988'
print(char)  # Output: 榈

Perl:

my $char = "\x{6988}";
print $char;  # Output: 榈

PHP:

$char = "\x{6988}";
echo $char;  // Output: 榈

Ruby:

char = "\u{6988}"
puts char  # Output: 榈

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006988";  /* Display: 榈 */
}

HTML Decimal:

<p>HTML decimal: &#27016;</p>  <!-- Display: 榈 -->

HTML Hexadecimal:

<p>HTML hex: &#x6988;</p>  <!-- Display: 榈 -->

URL Encoding:

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

Encodings

MD5:

ddf979f02ac7cac9c7105b56077fbd3a

SHA1:

3f07ccbca0f48912fc20cf2cdca1c83718914983

Base64:

5qaI