Unicode Finder

"榓" U+6993(CJK UNIFIED IDEOGRAPH-6993)

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

Programming

C
\u6993
JavaScript
\u6993
Java
\u6993
Json
\u6993
Python
\u6993
Perl
\x{6993}
PHP
\x{6993}
Ruby
\u{6993}
Rust
\u{6993}
Go
\u6993

Web

CSS
\006993
HtmlDecimal
榓
HtmlHexadecimal
榓
Url
%E6%A6%93

Code

MD5
a38db5588b16b280e2900b39ce773bdb
Sha1
d538e94f85ceea5ae3e4fd4a1819bcc30d2ae1d4
Base64
5qaT

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6993';
console.log(char);  // Output: 榓

Java:

char c = '\u6993';
System.out.println(c);  // Output: 榓

JSON:

{"text": "\u6993"}  // Value: 榓

Python:

char = '\u6993'
print(char)  # Output: 榓

Perl:

my $char = "\x{6993}";
print $char;  # Output: 榓

PHP:

$char = "\x{6993}";
echo $char;  // Output: 榓

Ruby:

char = "\u{6993}"
puts char  # Output: 榓

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006993";  /* Display: 榓 */
}

HTML Decimal:

<p>HTML decimal: &#27027;</p>  <!-- Display: 榓 -->

HTML Hexadecimal:

<p>HTML hex: &#x6993;</p>  <!-- Display: 榓 -->

URL Encoding:

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

Encodings

MD5:

a38db5588b16b280e2900b39ce773bdb

SHA1:

d538e94f85ceea5ae3e4fd4a1819bcc30d2ae1d4

Base64:

5qaT