Unicode Finder

"樟" U+6A1F(CJK UNIFIED IDEOGRAPH-6A1F)

U+6A1F
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-6A1F

Programming

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

Web

CSS
\006A1F
HtmlDecimal
樟
HtmlHexadecimal
樟
Url
%E6%A8%9F

Code

MD5
8aad4d1ad27027ff15353c7fcee8706c
Sha1
48159fda56bb8db81a21daeaf9e344b79e9a6469
Base64
5qif

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6A1F';
console.log(char);  // Output: 樟

Java:

char c = '\u6A1F';
System.out.println(c);  // Output: 樟

JSON:

{"text": "\u6A1F"}  // Value: 樟

Python:

char = '\u6A1F'
print(char)  # Output: 樟

Perl:

my $char = "\x{6A1F}";
print $char;  # Output: 樟

PHP:

$char = "\x{6A1F}";
echo $char;  // Output: 樟

Ruby:

char = "\u{6A1F}"
puts char  # Output: 樟

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27167;</p>  <!-- Display: 樟 -->

HTML Hexadecimal:

<p>HTML hex: &#x6A1F;</p>  <!-- Display: 樟 -->

URL Encoding:

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

Encodings

MD5:

8aad4d1ad27027ff15353c7fcee8706c

SHA1:

48159fda56bb8db81a21daeaf9e344b79e9a6469

Base64:

5qif