Unicode Finder

"椔" U+6914(CJK UNIFIED IDEOGRAPH-6914)

U+6914
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-6914

Programming

C
\u6914
JavaScript
\u6914
Java
\u6914
Json
\u6914
Python
\u6914
Perl
\x{6914}
PHP
\x{6914}
Ruby
\u{6914}
Rust
\u{6914}
Go
\u6914

Web

CSS
\006914
HtmlDecimal
椔
HtmlHexadecimal
椔
Url
%E6%A4%94

Code

MD5
26a33b9ddf8c9f5d8a071c28e250297c
Sha1
a45601efa33db65e7b737551c5331251fdd2f54c
Base64
5qSU

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6914';
console.log(char);  // Output: 椔

Java:

char c = '\u6914';
System.out.println(c);  // Output: 椔

JSON:

{"text": "\u6914"}  // Value: 椔

Python:

char = '\u6914'
print(char)  # Output: 椔

Perl:

my $char = "\x{6914}";
print $char;  # Output: 椔

PHP:

$char = "\x{6914}";
echo $char;  // Output: 椔

Ruby:

char = "\u{6914}"
puts char  # Output: 椔

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006914";  /* Display: 椔 */
}

HTML Decimal:

<p>HTML decimal: &#26900;</p>  <!-- Display: 椔 -->

HTML Hexadecimal:

<p>HTML hex: &#x6914;</p>  <!-- Display: 椔 -->

URL Encoding:

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

Encodings

MD5:

26a33b9ddf8c9f5d8a071c28e250297c

SHA1:

a45601efa33db65e7b737551c5331251fdd2f54c

Base64:

5qSU