Unicode Finder

"濬" U+6FEC(CJK UNIFIED IDEOGRAPH-6FEC)

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

Programming

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

Web

CSS
\006FEC
HtmlDecimal
濬
HtmlHexadecimal
濬
Url
%E6%BF%AC

Code

MD5
4a392f5de94573c8088ffad3bbe3f2a0
Sha1
91503195c9745865bfb19b6a18cffb0793d03ab4
Base64
5r+s

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6FEC';
console.log(char);  // Output: 濬

Java:

char c = '\u6FEC';
System.out.println(c);  // Output: 濬

JSON:

{"text": "\u6FEC"}  // Value: 濬

Python:

char = '\u6FEC'
print(char)  # Output: 濬

Perl:

my $char = "\x{6FEC}";
print $char;  # Output: 濬

PHP:

$char = "\x{6FEC}";
echo $char;  // Output: 濬

Ruby:

char = "\u{6FEC}"
puts char  # Output: 濬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28652;</p>  <!-- Display: 濬 -->

HTML Hexadecimal:

<p>HTML hex: &#x6FEC;</p>  <!-- Display: 濬 -->

URL Encoding:

// 濬 URL encoding
https://unicodefinder.com/search.php?query=%E6%BF%AC

Encodings

MD5:

4a392f5de94573c8088ffad3bbe3f2a0

SHA1:

91503195c9745865bfb19b6a18cffb0793d03ab4

Base64:

5r+s