Unicode Finder

"槪" U+69EA(CJK UNIFIED IDEOGRAPH-69EA)

U+69EA
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-69EA

Programming

C
\u69EA
JavaScript
\u69EA
Java
\u69EA
Json
\u69EA
Python
\u69EA
Perl
\x{69EA}
PHP
\x{69EA}
Ruby
\u{69EA}
Rust
\u{69EA}
Go
\u69EA

Web

CSS
\0069EA
HtmlDecimal
槪
HtmlHexadecimal
槪
Url
%E6%A7%AA

Code

MD5
ae6cec45a5699fa5d19f1a65c8f09bc5
Sha1
1de0d36cfb423dac0e897805e380fc3891dd0f9b
Base64
5qeq

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u69EA';
console.log(char);  // Output: 槪

Java:

char c = '\u69EA';
System.out.println(c);  // Output: 槪

JSON:

{"text": "\u69EA"}  // Value: 槪

Python:

char = '\u69EA'
print(char)  # Output: 槪

Perl:

my $char = "\x{69EA}";
print $char;  # Output: 槪

PHP:

$char = "\x{69EA}";
echo $char;  // Output: 槪

Ruby:

char = "\u{69EA}"
puts char  # Output: 槪

Rust:

let c = '\u{69EA}';
println!("{}", c);  // Output: 槪

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0069EA";  /* Display: 槪 */
}

HTML Decimal:

<p>HTML decimal: &#27114;</p>  <!-- Display: 槪 -->

HTML Hexadecimal:

<p>HTML hex: &#x69EA;</p>  <!-- Display: 槪 -->

URL Encoding:

// 槪 URL encoding
https://unicodefinder.com/search.php?query=%E6%A7%AA

Encodings

MD5:

ae6cec45a5699fa5d19f1a65c8f09bc5

SHA1:

1de0d36cfb423dac0e897805e380fc3891dd0f9b

Base64:

5qeq