Unicode Finder

"諭" U+8AED(CJK UNIFIED IDEOGRAPH-8AED)

U+8AED
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-8AED

Programming

C
\u8AED
JavaScript
\u8AED
Java
\u8AED
Json
\u8AED
Python
\u8AED
Perl
\x{8AED}
PHP
\x{8AED}
Ruby
\u{8AED}
Rust
\u{8AED}
Go
\u8AED

Web

CSS
\008AED
HtmlDecimal
諭
HtmlHexadecimal
諭
Url
%E8%AB%AD

Code

MD5
921dc2dc739174f6d8d7817bff761dfc
Sha1
ee27e52f0aa75fcc5a1cc45744aabf067a3b729b
Base64
6Kut

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8AED';
console.log(char);  // Output: 諭

Java:

char c = '\u8AED';
System.out.println(c);  // Output: 諭

JSON:

{"text": "\u8AED"}  // Value: 諭

Python:

char = '\u8AED'
print(char)  # Output: 諭

Perl:

my $char = "\x{8AED}";
print $char;  # Output: 諭

PHP:

$char = "\x{8AED}";
echo $char;  // Output: 諭

Ruby:

char = "\u{8AED}"
puts char  # Output: 諭

Rust:

let c = '\u{8AED}';
println!("{}", c);  // Output: 諭

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008AED";  /* Display: 諭 */
}

HTML Decimal:

<p>HTML decimal: &#35565;</p>  <!-- Display: 諭 -->

HTML Hexadecimal:

<p>HTML hex: &#x8AED;</p>  <!-- Display: 諭 -->

URL Encoding:

// 諭 URL encoding
https://unicodefinder.com/search.php?query=%E8%AB%AD

Encodings

MD5:

921dc2dc739174f6d8d7817bff761dfc

SHA1:

ee27e52f0aa75fcc5a1cc45744aabf067a3b729b

Base64:

6Kut