Unicode Finder

"梠" U+68A0(CJK UNIFIED IDEOGRAPH-68A0)

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

Programming

C
\u68A0
JavaScript
\u68A0
Java
\u68A0
Json
\u68A0
Python
\u68A0
Perl
\x{68A0}
PHP
\x{68A0}
Ruby
\u{68A0}
Rust
\u{68A0}
Go
\u68A0

Web

CSS
\0068A0
HtmlDecimal
梠
HtmlHexadecimal
梠
Url
%E6%A2%A0

Code

MD5
d568d775e49939adbed859df8df52263
Sha1
706dc78d431b493655c999da326e149082e74f1f
Base64
5qKg

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u68A0';
console.log(char);  // Output: 梠

Java:

char c = '\u68A0';
System.out.println(c);  // Output: 梠

JSON:

{"text": "\u68A0"}  // Value: 梠

Python:

char = '\u68A0'
print(char)  # Output: 梠

Perl:

my $char = "\x{68A0}";
print $char;  # Output: 梠

PHP:

$char = "\x{68A0}";
echo $char;  // Output: 梠

Ruby:

char = "\u{68A0}"
puts char  # Output: 梠

Rust:

let c = '\u{68A0}';
println!("{}", c);  // Output: 梠

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0068A0";  /* Display: 梠 */
}

HTML Decimal:

<p>HTML decimal: &#26784;</p>  <!-- Display: 梠 -->

HTML Hexadecimal:

<p>HTML hex: &#x68A0;</p>  <!-- Display: 梠 -->

URL Encoding:

// 梠 URL encoding
https://unicodefinder.com/search.php?query=%E6%A2%A0

Encodings

MD5:

d568d775e49939adbed859df8df52263

SHA1:

706dc78d431b493655c999da326e149082e74f1f

Base64:

5qKg