Unicode Finder

"緬" U+7DEC(CJK UNIFIED IDEOGRAPH-7DEC)

U+7DEC
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-7DEC

Programming

C
\u7DEC
JavaScript
\u7DEC
Java
\u7DEC
Json
\u7DEC
Python
\u7DEC
Perl
\x{7DEC}
PHP
\x{7DEC}
Ruby
\u{7DEC}
Rust
\u{7DEC}
Go
\u7DEC

Web

CSS
\007DEC
HtmlDecimal
緬
HtmlHexadecimal
緬
Url
%E7%B7%AC

Code

MD5
59a17e40a0bc639124a5f852b306c0bb
Sha1
15d89f7d7c3e4ef88aa370fda8c6a248178d6edb
Base64
57es

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7DEC';
console.log(char);  // Output: 緬

Java:

char c = '\u7DEC';
System.out.println(c);  // Output: 緬

JSON:

{"text": "\u7DEC"}  // Value: 緬

Python:

char = '\u7DEC'
print(char)  # Output: 緬

Perl:

my $char = "\x{7DEC}";
print $char;  # Output: 緬

PHP:

$char = "\x{7DEC}";
echo $char;  // Output: 緬

Ruby:

char = "\u{7DEC}"
puts char  # Output: 緬

Rust:

let c = '\u{7DEC}';
println!("{}", c);  // Output: 緬

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007DEC";  /* Display: 緬 */
}

HTML Decimal:

<p>HTML decimal: &#32236;</p>  <!-- Display: 緬 -->

HTML Hexadecimal:

<p>HTML hex: &#x7DEC;</p>  <!-- Display: 緬 -->

URL Encoding:

// 緬 URL encoding
https://unicodefinder.com/search.php?query=%E7%B7%AC

Encodings

MD5:

59a17e40a0bc639124a5f852b306c0bb

SHA1:

15d89f7d7c3e4ef88aa370fda8c6a248178d6edb

Base64:

57es