Unicode Finder

"榆" U+6986(CJK UNIFIED IDEOGRAPH-6986)

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

Programming

C
\u6986
JavaScript
\u6986
Java
\u6986
Json
\u6986
Python
\u6986
Perl
\x{6986}
PHP
\x{6986}
Ruby
\u{6986}
Rust
\u{6986}
Go
\u6986

Web

CSS
\006986
HtmlDecimal
榆
HtmlHexadecimal
榆
Url
%E6%A6%86

Code

MD5
a1dc0a7842f7cf890a3527da68c25afd
Sha1
4a94644d87d1b267cddbf9748496879e714311f0
Base64
5qaG

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6986';
console.log(char);  // Output: 榆

Java:

char c = '\u6986';
System.out.println(c);  // Output: 榆

JSON:

{"text": "\u6986"}  // Value: 榆

Python:

char = '\u6986'
print(char)  # Output: 榆

Perl:

my $char = "\x{6986}";
print $char;  # Output: 榆

PHP:

$char = "\x{6986}";
echo $char;  // Output: 榆

Ruby:

char = "\u{6986}"
puts char  # Output: 榆

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006986";  /* Display: 榆 */
}

HTML Decimal:

<p>HTML decimal: &#27014;</p>  <!-- Display: 榆 -->

HTML Hexadecimal:

<p>HTML hex: &#x6986;</p>  <!-- Display: 榆 -->

URL Encoding:

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

Encodings

MD5:

a1dc0a7842f7cf890a3527da68c25afd

SHA1:

4a94644d87d1b267cddbf9748496879e714311f0

Base64:

5qaG