Unicode Finder

"扆" U+6246(CJK UNIFIED IDEOGRAPH-6246)

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

Programming

C
\u6246
JavaScript
\u6246
Java
\u6246
Json
\u6246
Python
\u6246
Perl
\x{6246}
PHP
\x{6246}
Ruby
\u{6246}
Rust
\u{6246}
Go
\u6246

Web

CSS
\006246
HtmlDecimal
扆
HtmlHexadecimal
扆
Url
%E6%89%86

Code

MD5
79d5e5e6e7415e804c974f56d6c66ed9
Sha1
612b56a64b3265f82788eba4a9ea4dd1f0bea400
Base64
5omG

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6246';
console.log(char);  // Output: 扆

Java:

char c = '\u6246';
System.out.println(c);  // Output: 扆

JSON:

{"text": "\u6246"}  // Value: 扆

Python:

char = '\u6246'
print(char)  # Output: 扆

Perl:

my $char = "\x{6246}";
print $char;  # Output: 扆

PHP:

$char = "\x{6246}";
echo $char;  // Output: 扆

Ruby:

char = "\u{6246}"
puts char  # Output: 扆

Rust:

let c = '\u{6246}';
println!("{}", c);  // Output: 扆

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006246";  /* Display: 扆 */
}

HTML Decimal:

<p>HTML decimal: &#25158;</p>  <!-- Display: 扆 -->

HTML Hexadecimal:

<p>HTML hex: &#x6246;</p>  <!-- Display: 扆 -->

URL Encoding:

// 扆 URL encoding
https://unicodefinder.com/search.php?query=%E6%89%86

Encodings

MD5:

79d5e5e6e7415e804c974f56d6c66ed9

SHA1:

612b56a64b3265f82788eba4a9ea4dd1f0bea400

Base64:

5omG