Unicode Finder

"臝" U+81DD(CJK UNIFIED IDEOGRAPH-81DD)

U+81DD
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-81DD

Programming

C
\u81DD
JavaScript
\u81DD
Java
\u81DD
Json
\u81DD
Python
\u81DD
Perl
\x{81DD}
PHP
\x{81DD}
Ruby
\u{81DD}
Rust
\u{81DD}
Go
\u81DD

Web

CSS
\0081DD
HtmlDecimal
臝
HtmlHexadecimal
臝
Url
%E8%87%9D

Code

MD5
f25dfb6109326d5287f9c36577391e02
Sha1
3f396d621459ce6d82b8cd0239aa03330740c47f
Base64
6Ied

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u81DD';
console.log(char);  // Output: 臝

Java:

char c = '\u81DD';
System.out.println(c);  // Output: 臝

JSON:

{"text": "\u81DD"}  // Value: 臝

Python:

char = '\u81DD'
print(char)  # Output: 臝

Perl:

my $char = "\x{81DD}";
print $char;  # Output: 臝

PHP:

$char = "\x{81DD}";
echo $char;  // Output: 臝

Ruby:

char = "\u{81DD}"
puts char  # Output: 臝

Rust:

let c = '\u{81DD}';
println!("{}", c);  // Output: 臝

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0081DD";  /* Display: 臝 */
}

HTML Decimal:

<p>HTML decimal: &#33245;</p>  <!-- Display: 臝 -->

HTML Hexadecimal:

<p>HTML hex: &#x81DD;</p>  <!-- Display: 臝 -->

URL Encoding:

// 臝 URL encoding
https://unicodefinder.com/search.php?query=%E8%87%9D

Encodings

MD5:

f25dfb6109326d5287f9c36577391e02

SHA1:

3f396d621459ce6d82b8cd0239aa03330740c47f

Base64:

6Ied