Unicode Finder

"梍" U+688D(CJK UNIFIED IDEOGRAPH-688D)

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

Programming

C
\u688D
JavaScript
\u688D
Java
\u688D
Json
\u688D
Python
\u688D
Perl
\x{688D}
PHP
\x{688D}
Ruby
\u{688D}
Rust
\u{688D}
Go
\u688D

Web

CSS
\00688D
HtmlDecimal
梍
HtmlHexadecimal
梍
Url
%E6%A2%8D

Code

MD5
30907d0ca13000c8c4cbb326f151959b
Sha1
5f78e49037d6bbe43348544817c959d21ea283fb
Base64
5qKN

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u688D';
console.log(char);  // Output: 梍

Java:

char c = '\u688D';
System.out.println(c);  // Output: 梍

JSON:

{"text": "\u688D"}  // Value: 梍

Python:

char = '\u688D'
print(char)  # Output: 梍

Perl:

my $char = "\x{688D}";
print $char;  # Output: 梍

PHP:

$char = "\x{688D}";
echo $char;  // Output: 梍

Ruby:

char = "\u{688D}"
puts char  # Output: 梍

Rust:

let c = '\u{688D}';
println!("{}", c);  // Output: 梍

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00688D";  /* Display: 梍 */
}

HTML Decimal:

<p>HTML decimal: &#26765;</p>  <!-- Display: 梍 -->

HTML Hexadecimal:

<p>HTML hex: &#x688D;</p>  <!-- Display: 梍 -->

URL Encoding:

// 梍 URL encoding
https://unicodefinder.com/search.php?query=%E6%A2%8D

Encodings

MD5:

30907d0ca13000c8c4cbb326f151959b

SHA1:

5f78e49037d6bbe43348544817c959d21ea283fb

Base64:

5qKN