Unicode Finder

"檟" U+6A9F(CJK UNIFIED IDEOGRAPH-6A9F)

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

Programming

C
\u6A9F
JavaScript
\u6A9F
Java
\u6A9F
Json
\u6A9F
Python
\u6A9F
Perl
\x{6A9F}
PHP
\x{6A9F}
Ruby
\u{6A9F}
Rust
\u{6A9F}
Go
\u6A9F

Web

CSS
\006A9F
HtmlDecimal
檟
HtmlHexadecimal
檟
Url
%E6%AA%9F

Code

MD5
2fe899ee8047204b950c304ab48236ed
Sha1
84def14c080d97cb4a6eef21107ceca051c84a42
Base64
5qqf

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6A9F';
console.log(char);  // Output: 檟

Java:

char c = '\u6A9F';
System.out.println(c);  // Output: 檟

JSON:

{"text": "\u6A9F"}  // Value: 檟

Python:

char = '\u6A9F'
print(char)  # Output: 檟

Perl:

my $char = "\x{6A9F}";
print $char;  # Output: 檟

PHP:

$char = "\x{6A9F}";
echo $char;  // Output: 檟

Ruby:

char = "\u{6A9F}"
puts char  # Output: 檟

Rust:

let c = '\u{6A9F}';
println!("{}", c);  // Output: 檟

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006A9F";  /* Display: 檟 */
}

HTML Decimal:

<p>HTML decimal: &#27295;</p>  <!-- Display: 檟 -->

HTML Hexadecimal:

<p>HTML hex: &#x6A9F;</p>  <!-- Display: 檟 -->

URL Encoding:

// 檟 URL encoding
https://unicodefinder.com/search.php?query=%E6%AA%9F

Encodings

MD5:

2fe899ee8047204b950c304ab48236ed

SHA1:

84def14c080d97cb4a6eef21107ceca051c84a42

Base64:

5qqf