Unicode Finder

"榔" U+6994(CJK UNIFIED IDEOGRAPH-6994)

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

Programming

C
\u6994
JavaScript
\u6994
Java
\u6994
Json
\u6994
Python
\u6994
Perl
\x{6994}
PHP
\x{6994}
Ruby
\u{6994}
Rust
\u{6994}
Go
\u6994

Web

CSS
\006994
HtmlDecimal
榔
HtmlHexadecimal
榔
Url
%E6%A6%94

Code

MD5
f9c72027bd3a0f8aa856f1a1a9109bea
Sha1
729d83987201c4fc58b60eac464e15bb60508692
Base64
5qaU

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6994';
console.log(char);  // Output: 榔

Java:

char c = '\u6994';
System.out.println(c);  // Output: 榔

JSON:

{"text": "\u6994"}  // Value: 榔

Python:

char = '\u6994'
print(char)  # Output: 榔

Perl:

my $char = "\x{6994}";
print $char;  # Output: 榔

PHP:

$char = "\x{6994}";
echo $char;  // Output: 榔

Ruby:

char = "\u{6994}"
puts char  # Output: 榔

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006994";  /* Display: 榔 */
}

HTML Decimal:

<p>HTML decimal: &#27028;</p>  <!-- Display: 榔 -->

HTML Hexadecimal:

<p>HTML hex: &#x6994;</p>  <!-- Display: 榔 -->

URL Encoding:

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

Encodings

MD5:

f9c72027bd3a0f8aa856f1a1a9109bea

SHA1:

729d83987201c4fc58b60eac464e15bb60508692

Base64:

5qaU